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 22f5195 commit 8e51b33Copy full SHA for 8e51b33
.github/workflows/test.yml
@@ -35,7 +35,8 @@ jobs:
35
architecture: x86
36
env:
37
SETUP_REQUIRES: 'pip setuptools>=30.3.0 wheel'
38
- DEPENDS: 'numpy scipy matplotlib h5py pillow pydicom indexed_gzip'
+ DEPENDS: 'numpy scipy matplotlib pillow pydicom'
39
+ OPTIONAL_DEPENDS: 'h5py indexed_gzip'
40
INSTALL_TYPE: ${{ matrix.install }}
41
CHECK_TYPE: 'test'
42
EXTRA_PIP_FLAGS: ''
tools/ci/install_dependencies.sh
@@ -14,6 +14,7 @@ set -x
14
15
if [ -n "$DEPENDS" ]; then
16
pip install $EXTRA_PIP_FLAGS $DEPENDS
17
+ pip install $EXTRA_PIP_FLAGS $OPTIONAL_DEPENDS || true
18
fi
19
20
set +eux
0 commit comments