14
14
- $HOME/.cache/pip
15
15
env :
16
16
global :
17
- - DEPENDS="six numpy scipy matplotlib h5py pillow"
17
+ - DEPENDS="six numpy scipy matplotlib h5py pillow pydicom "
18
18
- OPTIONAL_DEPENDS=""
19
- - PYDICOM=1
20
19
- INSTALL_TYPE="setup"
21
20
- EXTRA_WHEELS="https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
22
21
- PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
@@ -34,15 +33,15 @@ matrix:
34
33
# Absolute minimum dependencies
35
34
- python : 2.7
36
35
env :
37
- - DEPENDS="numpy==1.7.1" PYDICOM=0
36
+ - DEPENDS="numpy==1.7.1"
38
37
# Absolute minimum dependencies plus oldest MPL
39
38
# Check these against:
40
39
# nibabel/info.py
41
40
# doc/source/installation.rst
42
41
# requirements.txt
43
42
- python : 2.7
44
43
env :
45
- - DEPENDS="numpy==1.7.1 matplotlib==1.3.1" PYDICOM=0
44
+ - DEPENDS="numpy==1.7.1 matplotlib==1.3.1"
46
45
# Minimum pydicom dependency
47
46
- python : 2.7
48
47
env :
@@ -51,12 +50,12 @@ matrix:
51
50
- python : 2.7
52
51
env :
53
52
- DEPENDS="numpy==1.7.1"
54
- # pydicom 1.0 (currently unreleased)
55
- - python : 2.7
53
+ # pydicom master branch
54
+ - python : 3.5
56
55
env :
57
- - PYDICOM="v1.0 "
58
- # test 2.7 against pre-release builds of everything
59
- - python : 2.7
56
+ - DEPENDS="numpy git+https://github.com/pydicom/pydicom.git@master "
57
+ # test 3.5 against pre-release builds of everything
58
+ - python : 3.5
60
59
env :
61
60
- EXTRA_PIP_FLAGS="$PRE_PIP_FLAGS"
62
61
# test 3.5 against pre-release builds of everything
@@ -102,14 +101,6 @@ before_install:
102
101
- pip install -U pip wheel # needed at one point
103
102
- retry pip install nose flake8 mock # always
104
103
- pip install $EXTRA_PIP_FLAGS $DEPENDS $OPTIONAL_DEPENDS
105
- # pydicom <= 0.9.8 doesn't install on python 3
106
- - if [ "${TRAVIS_PYTHON_VERSION:0:1}" == "2" ]; then
107
- if [ "$PYDICOM" == "1" ]; then
108
- pip install pydicom;
109
- elif [ "$PYDICOM" == "v1.0" ]; then
110
- pip install git+https://github.com/darcymason/pydicom.git@43f278444d5cb2e4648135d3edcd430c363c6975;
111
- fi
112
- fi
113
104
- if [ "${COVERAGE}" == "1" ]; then
114
105
pip install coverage;
115
106
pip install coveralls;
0 commit comments