We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b93af commit 06c1e76Copy full SHA for 06c1e76
tools/ci/install_dependencies.sh
@@ -19,10 +19,10 @@ if [ -n "$EXTRA_PIP_FLAGS" ]; then
19
fi
20
21
if [ -n "$DEPENDS" ]; then
22
- pip install ${EXTRA_PIP_FLAGS} --prefer-binary ${!DEPENDS}
+ pip install ${EXTRA_PIP_FLAGS} --only-binary :all: ${!DEPENDS}
23
if [ -n "$OPTIONAL_DEPENDS" ]; then
24
for DEP in ${!OPTIONAL_DEPENDS}; do
25
- pip install ${EXTRA_PIP_FLAGS} --prefer-binary $DEP || true
+ pip install ${EXTRA_PIP_FLAGS} --only-binary :all: $DEP || true
26
done
27
28
0 commit comments