Skip to content

Commit d767541

Browse files
authored
fix: make very very sure that pip prune uses only wheels (from the wheelhouse), and prevent accidentally building a wheel (#1151)
1 parent d967648 commit d767541

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ prune:
239239
python -m pip wheel --wheel-dir build/wheelhouse/ --requirement build/prune-requirements.txt
240240
python -m pip wheel --wheel-dir build/wheelhouse/ .
241241
python -m pip uninstall --yes --requirement build/prune-requirements.txt
242-
python -m pip install --no-index --find-links=build/wheelhouse/ --editable .
242+
python -m pip install --no-index --only-binary :all: --find-links=build/wheelhouse/ --editable .
243243
rm -fr build/
244244

245245
# Clean test caches and remove build artifacts.

0 commit comments

Comments
 (0)