Skip to content

Commit

Permalink
CI: Disable building dependencies from source
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Sep 8, 2023
1 parent 59b93af commit 06c1e76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/ci/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ if [ -n "$EXTRA_PIP_FLAGS" ]; then
fi

if [ -n "$DEPENDS" ]; then
pip install ${EXTRA_PIP_FLAGS} --prefer-binary ${!DEPENDS}
pip install ${EXTRA_PIP_FLAGS} --only-binary :all: ${!DEPENDS}
if [ -n "$OPTIONAL_DEPENDS" ]; then
for DEP in ${!OPTIONAL_DEPENDS}; do
pip install ${EXTRA_PIP_FLAGS} --prefer-binary $DEP || true
pip install ${EXTRA_PIP_FLAGS} --only-binary :all: $DEP || true
done
fi
fi
Expand Down

0 comments on commit 06c1e76

Please sign in to comment.