From 0b5796810138a569ce3fb5e8d2e68f8001ddb257 Mon Sep 17 00:00:00 2001 From: bronsen Date: Fri, 14 Mar 2025 11:13:19 +0100 Subject: [PATCH] [just] sync using pip-tools' `pip-sync` pip-sync uninstalls packages that are not in the specified requirements file; we want that --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 884dc1d..9f998f9 100644 --- a/justfile +++ b/justfile @@ -2,7 +2,7 @@ deps: pip-compile-multi --uv sync: - pip install -r requirements/dev.txt + pip-sync requirements/dev.txt lint: lint-ruff lint-django