File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 4
4
# for it to be on multiple physical lines, so long as you remember: - There
5
5
# can't be any leading "-"s - All newlines will be removed, so use ";"s
6
6
7
+ os : linux
7
8
dist : xenial
8
- sudo : true
9
9
language : python
10
-
11
10
cache : pip
11
+
12
12
env :
13
13
global :
14
+ - SETUP_REQUIRES="pip setuptools>=30.3.0 wheel"
14
15
- DEPENDS="six numpy<1.17dev scipy<1.3dev matplotlib h5py pillow pydicom"
15
16
- OPTIONAL_DEPENDS=""
16
17
- INSTALL_TYPE="setup"
19
20
- PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
20
21
- EXTRA_PIP_FLAGS="--find-links=$EXTRA_WHEELS"
21
22
- PRE_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
23
+
22
24
python :
23
25
- 3.5
24
26
- 3.6
25
27
- 3.7
26
- matrix :
28
+
29
+ jobs :
27
30
include :
28
31
- python : 3.4
29
32
dist : trusty
30
- sudo : false
33
+ env :
34
+ - SETUP_REQUIRES="pip<19.2 setuptools>=30.3.0 wheel"
31
35
# Absolute minimum dependencies
32
36
- python : 2.7
33
37
env :
@@ -96,7 +100,7 @@ before_install:
96
100
- virtualenv --python=python venv
97
101
- source venv/bin/activate
98
102
- python --version # just to check
99
- - travis_retry pip install -U pip setuptools>=27.0 wheel
103
+ - travis_retry pip install -U $SETUP_REQUIRES
100
104
- travis_retry pip install coverage
101
105
- if [ "${CHECK_TYPE}" == "test" ]; then
102
106
travis_retry pip install nose mock;
You can’t perform that action at this time.
0 commit comments