File tree 2 files changed +13
-24
lines changed
2 files changed +13
-24
lines changed Original file line number Diff line number Diff line change 21
21
- PRE_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
22
22
23
23
python :
24
- - 3.6
25
24
- 3.7
26
25
- 3.8
27
26
28
27
jobs :
29
28
include :
30
29
# Basic dependencies only
31
- - python : 3.5
30
+ - python : 3.6
32
31
env :
33
32
- DEPENDS="-r requirements.txt"
34
33
# Clean install
35
- - python : 3.5
34
+ - python : 3.6
36
35
env :
37
36
- DEPENDS=""
38
37
- CHECK_TYPE=skiptests
39
38
# Absolute minimum dependencies
40
- - python : 3.5
39
+ - python : 3.6
41
40
env :
42
41
- SETUP_REQUIRES="setuptools==30.3.0"
43
42
- DEPENDS="-r min-requirements.txt"
44
43
# Absolute minimum dependencies plus oldest MPL
45
- - python : 3.5
44
+ - python : 3.6
46
45
env :
47
46
- DEPENDS="-r min-requirements.txt matplotlib==1.5.3"
48
47
# Minimum pydicom dependency
49
- - python : 3.5
48
+ - python : 3.6
50
49
env :
51
50
- DEPENDS="-r min-requirements.txt pydicom==0.9.9 pillow==2.6"
52
51
# pydicom master branch
53
- - python : 3.5
52
+ - python : 3.6
54
53
env :
55
54
- DEPENDS="numpy git+https://github.com/pydicom/pydicom.git@master"
56
- # test 3.7 against pre-release builds of everything
57
- - python : 3.7
55
+ # test 3.8 against pre-release builds of everything
56
+ - python : 3.8
58
57
env :
59
58
- EXTRA_PIP_FLAGS="$PRE_PIP_FLAGS"
60
59
# OSX Python support is basically accidental. Take whatever version we can
@@ -67,23 +66,23 @@ jobs:
67
66
env :
68
67
- EXTRA_PIP_FLAGS="$PRE_PIP_FLAGS"
69
68
# Test that PyPI installs from source pass
70
- - python : 3.5
69
+ - python : 3.6
71
70
env :
72
71
- INSTALL_TYPE=sdist
73
72
# Wheels (binary distributions)
74
- - python : 3.5
73
+ - python : 3.6
75
74
env :
76
75
- INSTALL_TYPE=wheel
77
76
# Install from git archive (e.g., https://github.com/nipy/nibabel/archive/master.zip)
78
- - python : 3.5
77
+ - python : 3.6
79
78
env :
80
79
- INSTALL_TYPE=archive
81
80
# Run flake8... Might not be needed now we have pep8speaks
82
- - python : 3.5
81
+ - python : 3.6
83
82
env :
84
83
- CHECK_TYPE="style"
85
84
# Documentation doctests
86
- - python : 3.5
85
+ - python : 3.6
87
86
env :
88
87
- CHECK_TYPE="doc"
89
88
Original file line number Diff line number Diff line change 6
6
vmImage : windows-2019
7
7
matrix :
8
8
py35-x86 :
9
- PYTHON_VERSION : ' 3.5'
10
- PYTHON_ARCH : ' x86'
11
- py35-x64 :
12
- PYTHON_VERSION : ' 3.5'
13
- PYTHON_ARCH : ' x64'
14
- py35-h5py-check :
15
- PYTHON_VERSION : ' 3.5'
16
- PYTHON_ARCH : ' x64'
17
- PYTHONHASHSEED : 283137131
18
- DEPENDS : " h5py==2.9.0"
19
9
py36-x86 :
20
10
PYTHON_VERSION : ' 3.6'
21
11
PYTHON_ARCH : ' x86'
You can’t perform that action at this time.
0 commit comments