Skip to content

Commit ccc10ab

Browse files
committed
Wrap python commands with "uv run"
1 parent 3f8d578 commit ccc10ab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ mypy:
2424
build: _uv
2525
uv pip install -r requirements.prod.txt -r requirements.dev.txt
2626
rm -rf staticfiles/*
27-
python manage.py collectstatic --no-input
27+
uv run python manage.py collectstatic --no-input
2828
rm -f ccbv.sqlite
29-
python manage.py migrate
30-
python manage.py load_all_django_versions
29+
uv run python manage.py migrate
30+
uv run python manage.py load_all_django_versions
3131

3232
build-prod:
3333
pip install -r requirements.prod.txt

0 commit comments

Comments
 (0)