From f2600bd67d619a5c535037964a6573426705b0a6 Mon Sep 17 00:00:00 2001 From: Stuart Campbell Date: Mon, 1 Jun 2026 10:47:19 -0400 Subject: [PATCH] Modify upgrade commands in README.md Updated pip compile commands to exclude newer packages from the last week. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2d64b897..83054079 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,8 @@ 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 @@ -71,4 +71,4 @@ 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. \ No newline at end of file +Of course, you can drop the `uv` from these last commands if you want to wait longer.