From 85523f087bcf9eae5f215bc3041e6a912ccc676a Mon Sep 17 00:00:00 2001 From: Agrendalath Date: Wed, 29 Jan 2025 22:58:06 +0100 Subject: [PATCH] fix: create `uv` venv before upgrading requirements --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 356029b..82bf48a 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ PIP_COMPILE = uv pip compile --upgrade $(PIP_COMPILE_OPTS) upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade upgrade: piptools ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in + uv venv --allow-existing # Make sure to compile files after any other files they include! $(PIP_COMPILE) -o requirements/pip.txt requirements/pip.in uv pip install -qr requirements/pip.txt