Skip to content

Commit a264c83

Browse files
authored
Merge pull request #3937 from ccnmtl/update-django.mk
Update django.mk
2 parents 3ef301e + 02cd7cf commit a264c83

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

django.mk

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ MANAGE ?= ./manage.py
2323
REQUIREMENTS ?= requirements.txt
2424
SYS_PYTHON ?= python3
2525
PY_SENTINAL ?= $(VE)/sentinal
26-
WHEEL_VERSION ?= 0.44.0
27-
PIP_VERSION ?= 24.2
26+
WHEEL_VERSION ?= 0.45.1
27+
PIP_VERSION ?= 25.1.1
28+
SETUPTOOLS_VERSION ?= 80.7.1
2829
MAX_COMPLEXITY ?= 10
2930
INTERFACE ?= localhost
3031
RUNSERVER_PORT ?= 8000
@@ -40,7 +41,7 @@ $(PY_SENTINAL): $(REQUIREMENTS)
4041
rm -rf $(VE)
4142
$(SYS_PYTHON) -m venv $(VE)
4243
$(PIP) install pip==$(PIP_VERSION)
43-
$(PIP) install --upgrade setuptools
44+
$(PIP) install setuptools==$(SETUPTOOLS_VERSION)
4445
$(PIP) install wheel==$(WHEEL_VERSION)
4546
$(PIP) install --no-deps --requirement $(REQUIREMENTS)
4647
touch $@

0 commit comments

Comments
 (0)