Skip to content

Commit c4a3f99

Browse files
authored
Merge pull request #160 from oesteban/maint/drop-py36
MAINT: Drop Python 3.6
2 parents 66b3c30 + 4567d3d commit c4a3f99

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
max-parallel: 5
2424
matrix:
25-
python-version: [3.6, 3.7, 3.8]
25+
python-version: [3.7, 3.8, 3.9]
2626

2727
steps:
2828
- name: Git settings (pacify DataLad)

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
git+https://github.com/AleksandarPetrov/napoleon.git@0dc3f28a309ad602be5f44a9049785a1026451b3#egg=sphinxcontrib-napoleon
22
git+https://github.com/rwblair/sphinxcontrib-versioning.git@39b40b0b84bf872fc398feff05344051bbce0f63#egg=sphinxcontrib-versioning
33
nbsphinx
4-
nipype>=1.3.1
4+
nipype>=1.5.1,<2.0
55
git+https://github.com/nipreps/niworkflows.git@master
66
packaging
77
pydot>=1.2.3

min-requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Auto-generated by tools/update_requirements.py
22
nibabel==3.0.1
33
nipype==1.5.1
4-
niworkflows==1.3.0
4+
niworkflows==1.4.0rc0
55
numpy
66
pybids==0.11.1
7+
scikit-image
78
templateflow==0.6

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Auto-generated by tools/update_requirements.py
22
nibabel>=3.0.1
33
nipype<2.0,>=1.5.1
4-
niworkflows~=1.3.0
4+
niworkflows>=1.4.0rc0
55
numpy
66
pybids>=0.11.1
7+
scikit-image
78
templateflow>=0.6

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ classifiers =
66
Intended Audience :: Science/Research
77
Topic :: Scientific/Engineering :: Image Recognition
88
License :: OSI Approved :: BSD License
9-
Programming Language :: Python :: 3.6
109
Programming Language :: Python :: 3.7
1110
Programming Language :: Python :: 3.8
11+
Programming Language :: Python :: 3.9
1212
description = Susceptibility Distortion Correction (SDC) workflows for EPI MR schemes.
1313
license = Apache-2.0
1414
long_description = file:README.rst
@@ -21,7 +21,7 @@ project_urls =
2121
url = https://www.nipreps.org/sdcflows
2222

2323
[options]
24-
python_requires = >=3.6
24+
python_requires = >=3.7
2525
setup_requires =
2626
setuptools >= 42.0
2727
setuptools_scm >= 3.4
@@ -31,7 +31,6 @@ install_requires =
3131
nibabel >=3.0.1
3232
nipype >=1.5.1,<2.0
3333
niworkflows >= 1.4.0rc0
34-
numpy <1.20; python_version < "3.7"
3534
numpy
3635
pybids >= 0.11.1
3736
scikit-image

0 commit comments

Comments
 (0)