From 860ab02b0fb7f2dc6066fa747e779b7f2423b32f Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 16 Dec 2024 13:18:52 +0000 Subject: [PATCH] freeze-requirements: perform uv pip sync after uv pip compile the first of these being particularly important because otherwise the following call to copy_config() will be copying from the *old* version of -utils --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index bdcf0c5..b4cc1de 100644 --- a/Makefile +++ b/Makefile @@ -52,8 +52,10 @@ bootstrap-with-docker: generate-version-file .PHONY: freeze-requirements freeze-requirements: ## create static requirements.txt uv pip compile requirements.in -o requirements.txt + uv pip sync requirements.txt python -c "from notifications_utils.version_tools import copy_config; copy_config()" uv pip compile requirements_for_test.in -o requirements_for_test.txt + uv pip sync requirements_for_test.txt .PHONY: generate-version-file generate-version-file: ## Generates the app version file