We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ef301e + 02cd7cf commit a264c83Copy full SHA for a264c83
django.mk
@@ -23,8 +23,9 @@ MANAGE ?= ./manage.py
23
REQUIREMENTS ?= requirements.txt
24
SYS_PYTHON ?= python3
25
PY_SENTINAL ?= $(VE)/sentinal
26
-WHEEL_VERSION ?= 0.44.0
27
-PIP_VERSION ?= 24.2
+WHEEL_VERSION ?= 0.45.1
+PIP_VERSION ?= 25.1.1
28
+SETUPTOOLS_VERSION ?= 80.7.1
29
MAX_COMPLEXITY ?= 10
30
INTERFACE ?= localhost
31
RUNSERVER_PORT ?= 8000
@@ -40,7 +41,7 @@ $(PY_SENTINAL): $(REQUIREMENTS)
40
41
rm -rf $(VE)
42
$(SYS_PYTHON) -m venv $(VE)
43
$(PIP) install pip==$(PIP_VERSION)
- $(PIP) install --upgrade setuptools
44
+ $(PIP) install setuptools==$(SETUPTOOLS_VERSION)
45
$(PIP) install wheel==$(WHEEL_VERSION)
46
$(PIP) install --no-deps --requirement $(REQUIREMENTS)
47
touch $@
0 commit comments