Skip to content

Commit 06c1e76

Browse files
committed
CI: Disable building dependencies from source
1 parent 59b93af commit 06c1e76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/ci/install_dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ if [ -n "$EXTRA_PIP_FLAGS" ]; then
1919
fi
2020

2121
if [ -n "$DEPENDS" ]; then
22-
pip install ${EXTRA_PIP_FLAGS} --prefer-binary ${!DEPENDS}
22+
pip install ${EXTRA_PIP_FLAGS} --only-binary :all: ${!DEPENDS}
2323
if [ -n "$OPTIONAL_DEPENDS" ]; then
2424
for DEP in ${!OPTIONAL_DEPENDS}; do
25-
pip install ${EXTRA_PIP_FLAGS} --prefer-binary $DEP || true
25+
pip install ${EXTRA_PIP_FLAGS} --only-binary :all: $DEP || true
2626
done
2727
fi
2828
fi

0 commit comments

Comments
 (0)