From abb95c86d2728f44c69f6ef6b96fd9eccaddb56f Mon Sep 17 00:00:00 2001 From: Nathan Dunfield Date: Wed, 27 Nov 2024 15:35:11 -0600 Subject: [PATCH] fix pip flag name --- build_mac_app.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_mac_app.sh b/build_mac_app.sh index 35efad9..8fdacb5 100644 --- a/build_mac_app.sh +++ b/build_mac_app.sh @@ -58,7 +58,7 @@ install_package () { git pull python3 setup.py clean fi - python3 -m pip wheel --no-isolation --wheel-dir=../wheelhouse . + python3 -m pip wheel --no-build-isolation --wheel-dir=../wheelhouse . python3 -m pip install --force-reinstall --no-index --no-cache-dir --no-deps --find-links ../wheelhouse ${@: -1} cd .. fi