Skip to content

Commit 65d5fc6

Browse files
committed
CI: Drop 3.5 tests, set min to 3.6, pre-release to 3.8
1 parent 7a62503 commit 65d5fc6

File tree

2 files changed

+13
-24
lines changed

2 files changed

+13
-24
lines changed

.travis.yml

+13-14
Original file line numberDiff line numberDiff line change
@@ -21,40 +21,39 @@ env:
2121
- PRE_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
2222

2323
python:
24-
- 3.6
2524
- 3.7
2625
- 3.8
2726

2827
jobs:
2928
include:
3029
# Basic dependencies only
31-
- python: 3.5
30+
- python: 3.6
3231
env:
3332
- DEPENDS="-r requirements.txt"
3433
# Clean install
35-
- python: 3.5
34+
- python: 3.6
3635
env:
3736
- DEPENDS=""
3837
- CHECK_TYPE=skiptests
3938
# Absolute minimum dependencies
40-
- python: 3.5
39+
- python: 3.6
4140
env:
4241
- SETUP_REQUIRES="setuptools==30.3.0"
4342
- DEPENDS="-r min-requirements.txt"
4443
# Absolute minimum dependencies plus oldest MPL
45-
- python: 3.5
44+
- python: 3.6
4645
env:
4746
- DEPENDS="-r min-requirements.txt matplotlib==1.5.3"
4847
# Minimum pydicom dependency
49-
- python: 3.5
48+
- python: 3.6
5049
env:
5150
- DEPENDS="-r min-requirements.txt pydicom==0.9.9 pillow==2.6"
5251
# pydicom master branch
53-
- python: 3.5
52+
- python: 3.6
5453
env:
5554
- 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
5857
env:
5958
- EXTRA_PIP_FLAGS="$PRE_PIP_FLAGS"
6059
# OSX Python support is basically accidental. Take whatever version we can
@@ -67,23 +66,23 @@ jobs:
6766
env:
6867
- EXTRA_PIP_FLAGS="$PRE_PIP_FLAGS"
6968
# Test that PyPI installs from source pass
70-
- python: 3.5
69+
- python: 3.6
7170
env:
7271
- INSTALL_TYPE=sdist
7372
# Wheels (binary distributions)
74-
- python: 3.5
73+
- python: 3.6
7574
env:
7675
- INSTALL_TYPE=wheel
7776
# Install from git archive (e.g., https://github.com/nipy/nibabel/archive/master.zip)
78-
- python: 3.5
77+
- python: 3.6
7978
env:
8079
- INSTALL_TYPE=archive
8180
# Run flake8... Might not be needed now we have pep8speaks
82-
- python: 3.5
81+
- python: 3.6
8382
env:
8483
- CHECK_TYPE="style"
8584
# Documentation doctests
86-
- python: 3.5
85+
- python: 3.6
8786
env:
8887
- CHECK_TYPE="doc"
8988

azure-pipelines.yml

-10
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,6 @@ jobs:
66
vmImage: windows-2019
77
matrix:
88
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"
199
py36-x86:
2010
PYTHON_VERSION: '3.6'
2111
PYTHON_ARCH: 'x86'

0 commit comments

Comments
 (0)