From f0db48ec9cfec6d48253da06b5d006da6197b141 Mon Sep 17 00:00:00 2001 From: Jens Troeger Date: Wed, 22 Apr 2026 16:33:57 +1000 Subject: [PATCH] fix: make very very sure that pip prune uses only wheels (from the wheelhouse), and prevent accidentally building a wheel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0e14e433..5089fdb7 100644 --- a/Makefile +++ b/Makefile @@ -242,7 +242,7 @@ prune: python -m pip wheel --wheel-dir build/wheelhouse/ --requirement build/prune-requirements.txt python -m pip wheel --wheel-dir build/wheelhouse/ . python -m pip uninstall --yes --requirement build/prune-requirements.txt - python -m pip install --no-index --find-links=build/wheelhouse/ --editable . + python -m pip install --no-index --only-binary :all: --find-links=build/wheelhouse/ --editable . rm -fr build/ # Clean test caches and remove build artifacts.