Skip to content

Commit b74bf23

Browse files
committed
CI: Drop OPTIONAL_DEPENDS
1 parent 6800470 commit b74bf23

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tools/ci/install_dependencies.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ set -eu
1010
# Required variables
1111
echo EXTRA_PIP_FLAGS = $EXTRA_PIP_FLAGS
1212
echo DEPENDS = $DEPENDS
13-
echo OPTIONAL_DEPENDS = $OPTIONAL_DEPENDS
1413

1514
set -x
1615

@@ -20,11 +19,6 @@ fi
2019

2120
if [ -n "$DEPENDS" ]; then
2221
pip install ${EXTRA_PIP_FLAGS} --prefer-binary ${!DEPENDS}
23-
if [ -n "$OPTIONAL_DEPENDS" ]; then
24-
for DEP in ${!OPTIONAL_DEPENDS}; do
25-
pip install ${EXTRA_PIP_FLAGS} --prefer-binary $DEP || true
26-
done
27-
fi
2822
fi
2923

3024
set +eux

0 commit comments

Comments
 (0)