File tree 5 files changed +189
-551
lines changed
5 files changed +189
-551
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ runserver: $(VIRTUAL_ENV)
27
27
28
28
$(VIRTUAL_ENV ) : $(REQUIREMENTS_PATH )
29
29
$(PYTHON_VERSION ) -m venv $@
30
- $@ /bin/pip install -r $^
31
- $@ /bin/pip- sync $^
30
+ $@ /bin/pip install uv
31
+ $@ /bin/uv pip sync $^
32
32
touch $@
33
33
34
34
venv : $(VIRTUAL_ENV )
@@ -38,9 +38,9 @@ buckets: $(VENV_REQUIREMENT)
38
38
39
39
PIP_COMPILE_FLAGS := --allow-unsafe --generate-hashes $(PIP_COMPILE_OPTIONS )
40
40
compile-deps : $(VENV_REQUIREMENT )
41
- pip- compile $(PIP_COMPILE_FLAGS ) -o requirements/base.txt requirements/base.in
42
- pip- compile $(PIP_COMPILE_FLAGS ) -o requirements/test.txt requirements/test.in
43
- pip- compile $(PIP_COMPILE_FLAGS ) -o requirements/dev.txt requirements/dev.in
41
+ uv pip compile $(PIP_COMPILE_FLAGS ) -o requirements/base.txt requirements/base.in
42
+ uv pip compile $(PIP_COMPILE_FLAGS ) -o requirements/test.txt requirements/test.in
43
+ uv pip compile $(PIP_COMPILE_FLAGS ) -o requirements/dev.txt requirements/dev.in
44
44
45
45
clean :
46
46
find . -type d -name " __pycache__" -depth -exec rm -rf ' {}' \;
You can’t perform that action at this time.
0 commit comments