Skip to content

Commit 071e3e2

Browse files
authored
Merge pull request nipreps#487 from oesteban/maint/486-drop-python3.5
MAINT: Drop Python 3.5
2 parents 5ffc52e + 67b8e7d commit 071e3e2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ jobs:
353353
working_directory: /tmp/src/niworkflows
354354
steps:
355355
- checkout
356-
- run: pyenv local 3.5.2
356+
- run: pyenv local 3.7.0
357357
- run:
358358
name: Install build depends
359359
command: python3 -m pip install "setuptools>=30.4.0" "pip>=10.0.1" "twine<2.0" docutils
@@ -378,7 +378,7 @@ jobs:
378378
working_directory: /tmp/src/niworkflows
379379
steps:
380380
- checkout
381-
- run: pyenv local 3.5.2
381+
- run: pyenv local 3.7.0
382382
- run:
383383
name: Install build depends
384384
command: python3 -m pip install "setuptools>=30.4.0" "pip>=10.0.1" "twine<2.0" docutils

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ cache:
88
- $HOME/.cache/pip
99

1010
python:
11-
- 3.5
1211
- 3.6
1312
- 3.7
13+
- 3.8
1414

1515
env:
1616
global:
@@ -30,12 +30,12 @@ matrix:
3030
- python: 3.7
3131
env: CHECK_TYPE="style"
3232
allow_failures:
33-
- python: 3.5
34-
env: INSTALL_DEPENDS="pip==10.0.1 setuptools==30.4.0"
3533
- python: 3.6
3634
env: INSTALL_DEPENDS="pip==10.0.1 setuptools==30.4.0"
3735
- python: 3.7
3836
env: INSTALL_DEPENDS="pip==10.0.1 setuptools==30.4.0"
37+
- python: 3.8
38+
env: INSTALL_DEPENDS="pip==10.0.1 setuptools==30.4.0"
3939

4040
before_install:
4141
- python -m pip install --upgrade pip virtualenv

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ classifiers =
1313
Intended Audience :: Science/Research
1414
Topic :: Scientific/Engineering :: Image Recognition
1515
License :: OSI Approved :: BSD License
16-
Programming Language :: Python :: 3.5
1716
Programming Language :: Python :: 3.6
1817
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.8
1919

2020
[options]
21-
python_requires = >= 3.5
21+
python_requires = >= 3.6
2222
install_requires =
2323
attrs
2424
jinja2

0 commit comments

Comments
 (0)