File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 6
6
language : python
7
7
env :
8
8
global :
9
- - DEPENDS="numpy scipy matplotlib"
9
+ - DEPENDS="numpy scipy matplotlib h5py "
10
10
- PYDICOM=1
11
11
python :
12
12
- 2.6
@@ -30,7 +30,7 @@ before_install:
30
30
- virtualenv venv
31
31
- source venv/bin/activate
32
32
- pip install nose # always
33
- - pip install -f http://travis-wheels.scikit-image.org $DEPENDS
33
+ - pip install --no-index - f http://travis-wheels.scikit-image.org $DEPENDS
34
34
# pydicom <= 0.9.8 doesn't install on python 3
35
35
- if [ "${TRAVIS_PYTHON_VERSION:0:1}" == "2" ]; then
36
36
if [ "$PYDICOM" == "1" ]; then
@@ -41,6 +41,9 @@ before_install:
41
41
pip install coverage;
42
42
pip install coveralls;
43
43
fi
44
+ - if [[ $DEPENDS == *h5py* ]]; then
45
+ sudo apt-get install libhdf5-serial-dev;
46
+ fi
44
47
# command to install dependencies
45
48
install :
46
49
- python setup.py install
You can’t perform that action at this time.
0 commit comments