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.
1 parent 91bbaee commit 6b6f49aCopy full SHA for 6b6f49a
1 file changed
Makefile
@@ -52,15 +52,15 @@ virtualenv:
52
@${PYTHON_EXE} ${VIRTUALENV_PYZ} --download ${VENV}
53
@$(MAKE) upgrade-tools
54
55
+upgrade-tools:
56
+ @echo "-> Upgrade pip / setuptools / wheel (Python 3.12 safe)"
57
+ @${VENV}/bin/python -m pip install --upgrade --force-reinstall \
58
+ "pip>=24" "setuptools>=69" "wheel>=0.42" packaging
59
+
60
conf: virtualenv
61
@echo "-> Install dependencies"
62
@${ACTIVATE} pip install -e . -c requirements.txt
63
-upgrade-tools:
- @echo "-> Upgrade pip / setuptools / wheel (Python 3.12 safe)"
- @${ACTIVATE} python -m pip install --upgrade --force-reinstall \
- pip setuptools wheel packaging
-
64
dev: virtualenv
65
@echo "-> Configure and install development dependencies"
66
@${ACTIVATE} pip install -e .[dev] -c requirements.txt
0 commit comments