From 2b6e3f936a1dc13f48df174a33491dafbda5519a Mon Sep 17 00:00:00 2001 From: Marco Merlin Date: Fri, 1 Nov 2024 19:09:46 +0100 Subject: [PATCH] add --no-build-isolation to pip call in pypi.sh to support virtual environmnet --- pypi.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pypi.sh b/pypi.sh index b2cf2fd..4e49bf9 100644 --- a/pypi.sh +++ b/pypi.sh @@ -70,11 +70,11 @@ fi if [[ "$INSTALL_TEST" -gt 0 ]]; then echo "Installing package from testpypi... " - $PIP install --index-url https://test.pypi.org/simple/ ${PACKAGE} + $PIP install --index-url https://test.pypi.org/simple/ ${PACKAGE} --no-build-isolation fi if [[ "$INSTALL" -gt 0 ]]; then echo "Installing package from pypi... " - $PIP install ${PACKAGE} + $PIP install ${PACKAGE} --no-build-isolation fi \ No newline at end of file