You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use [Sphinx](https://www.sphinx-doc.org/en/master/index.html) for our documentation and publish it on [Read the Docs](https://aleph-alpha-client.readthedocs.io/en/latest/).
58
-
To work on the documentation, you need to install the project editable and with the `docs`extra.
58
+
To work on the documentation, you need to install the project with the `docs`dependency group.
59
59
60
-
```bash
61
-
pip install -e .[docs]
60
+
```sh
61
+
uv sync --group docs
62
62
```
63
63
64
64
The documentation can be generated with:
65
65
66
-
```bash
66
+
```sh
67
67
cd docs
68
-
make html
68
+
uv run make html
69
69
```
70
70
71
71
Make sure that the documentation can be generated without Sphinx warnings or errors.
0 commit comments