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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,13 +44,13 @@ In order to manage the certificates, follow these steps:
44
44
45
45
# Updating python dependencies
46
46
47
-
Python dependencies are managed with poetry. If you need to add a new dependency, run this command:
47
+
Python dependencies are managed with uv. If you need to add a new dependency, run this command:
48
48
49
49
```
50
-
docker compose run --rm web poetry add <dependency>
50
+
docker compose run --rm web uv add <dependency>
51
51
```
52
-
This will update the `pyproject.toml` and `poetry.lock` files. Then run `docker-compose build web celery` to make the change permanent in your docker images.
53
-
Refer to the [poetry documentation](https://python-poetry.org/docs/cli/) for particulars about specifying versions, removing dependencies, etc.
52
+
This will update the `pyproject.toml` and `uv.lock` files. Then run `docker-compose build web celery` to make the change permanent in your docker images.
53
+
Refer to the [uv documentation](https://docs.astral.sh/uv/reference/cli/) for particulars about specifying versions, removing dependencies, etc.
0 commit comments