From c8334ea4f68406bb61647de8705756eab81acc53 Mon Sep 17 00:00:00 2001 From: Charlie Denton Date: Sun, 14 Sep 2025 18:49:10 +0100 Subject: [PATCH] Stop trying to use uv in prod --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ce208d07..77d7647e 100644 --- a/Makefile +++ b/Makefile @@ -26,10 +26,8 @@ build: _uv python manage.py migrate python manage.py load_all_django_versions -build-prod: _uv - uv venv --python 3.13 - source .venv/bin/activate - uv pip install -r requirements.prod.txt +build-prod: + pip install -r requirements.prod.txt rm -rf staticfiles/* python manage.py collectstatic --no-input rm -f ccbv.sqlite