Skip to content
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ The project uses `uv pip compile` to manage the `requirements.txt` and `requirem
In order to upgrade the packages versions you will need to simply run

```
uv pip compile requirements-dev.in --upgrade -o requirements-dev.txt
uv pip compile requirements.in --upgrade -o requirements.txt
uv pip compile requirements-dev.in --upgrade -o requirements-dev.txt --exclude-newer "1 week"
uv pip compile requirements.in --upgrade -o requirements.txt --exclude-newer "1 week"
```

Then in order to actually upgrade the packages
```
uv pip install -r requirements-dev.txt
uv pip install -r requirements.txt
```
Of course, you can drop the `uv` from these last commands if you want to wait longer.
Of course, you can drop the `uv` from these last commands if you want to wait longer.