Skip to content

Commit

Permalink
add --no-build-isolation to pip call in pypi.sh to support virtual en…
Browse files Browse the repository at this point in the history
…vironmnet
  • Loading branch information
bat52 committed Nov 1, 2024
1 parent cbae696 commit 2b6e3f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2b6e3f9

Please sign in to comment.