Skip to content

Commit 8e59253

Browse files
Update the instruction on upgrading deps using uv
1 parent 5c01f71 commit 8e59253

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ This is the repository for the NSLS-II Facility API codebase.
88

99
## Developer Notes
1010

11+
12+
1113
### Updating Dependencies
1214

13-
The project uses `pip-compile` to manage the `requirements.txt` and `requirements-dev.txt`.
14-
In order to upgrade the packages you will need to install `pip-tools`. Then to upgrade simply run
15+
The project uses `uv pip compile` to manage the `requirements.txt` and `requirements-dev.txt` files.
16+
17+
In order to upgrade the packages you will need to simply run
1518

1619
```
17-
pip-compile requirements-dev.in --upgrade
18-
pip-compile requirements.in --upgrade
20+
uv pip compile requirements-dev.in --upgrade -o requirements-dev.txt
21+
uv pip compile requirements.in --upgrade -o requirements.txt
1922
```
2023

0 commit comments

Comments
 (0)