Skip to content

Commit 0fbb147

Browse files
committed
Remove upgrade of packages from pip install
The new pip (24.3) has problems with older packages. Errors of the form ``` AttributeError: 'InstallRequirement' object has no attribute 'use_pep517' ``` That are unfixable from the user side.
1 parent 7873f15 commit 0fbb147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ requirements-dev.txt: requirements-dev.in
143143

144144
$(VENV):
145145
$(PYEXECPATH) -m venv $(VENV)
146-
$(PIP) install --upgrade pip setuptools wheel
146+
$(PIP) install pip setuptools wheel
147147
$(PIP) install pip-tools
148148

149149
$(VENV)/$(MARKER): requirements.txt requirements-dev.txt | $(VENV)

0 commit comments

Comments
 (0)