Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/great-trainers-fetch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"anywidget": patch
---

fix: add `watchfiles` as a directy dependency
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Learn more in
may be installed with `pip`:

```bash
pip install "anywidget[dev]"
pip install anywidget
```

It is also available on
Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/blog/anywidget-02.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ _TL;DR: **anywidget** v0.2 brings modern web development to Jupyter. You can now
use a **file path** to enable **anywidget**'s integrated Hot Module Replacement (HMR):_

```sh
pip install --upgrade "anywidget[dev]"
pip install --upgrade anywidget
```

```python
Expand Down Expand Up @@ -193,7 +193,7 @@ to allow for the special JSX syntax (e.g., `<App />`).
To start using **anywidget** v0.2, upgrade your package using pip:

```sh
pip install --upgrade "anywidget[dev]"
pip install --upgrade anywidget
```

I encourage you to explore the new features in **anywidget** v0.2 and experience the
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/en/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ecosystem, allowing your widget to run automatically in **Jupyter Notebooks**,
## Example

```
pip install "anywidget[dev]"
pip install anywidget
```

```python
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dependencies = [
"importlib-metadata ; python_version < '3.8'",
"typing-extensions>=4.2.0",
"psygnal>=0.8.1",
"watchfiles>=0.18.0",
]

[project.optional-dependencies]
Expand All @@ -28,7 +29,6 @@ test = [
"ruff",
]
dev = [
"watchfiles",
"ipykernel",
]

Expand Down