Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Drop Python 3.6 #160

Merged
merged 1 commit into from
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- name: Git settings (pacify DataLad)
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
git+https://github.com/AleksandarPetrov/napoleon.git@0dc3f28a309ad602be5f44a9049785a1026451b3#egg=sphinxcontrib-napoleon
git+https://github.com/rwblair/sphinxcontrib-versioning.git@39b40b0b84bf872fc398feff05344051bbce0f63#egg=sphinxcontrib-versioning
nbsphinx
nipype>=1.3.1
nipype>=1.5.1,<2.0
git+https://github.com/nipreps/niworkflows.git@master
packaging
pydot>=1.2.3
Expand Down
3 changes: 2 additions & 1 deletion min-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Auto-generated by tools/update_requirements.py
nibabel==3.0.1
nipype==1.5.1
niworkflows==1.3.0
niworkflows==1.4.0rc0
numpy
pybids==0.11.1
scikit-image
templateflow==0.6
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Auto-generated by tools/update_requirements.py
nibabel>=3.0.1
nipype<2.0,>=1.5.1
niworkflows~=1.3.0
niworkflows>=1.4.0rc0
numpy
pybids>=0.11.1
scikit-image
templateflow>=0.6
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ classifiers =
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Recognition
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
description = Susceptibility Distortion Correction (SDC) workflows for EPI MR schemes.
license = Apache-2.0
long_description = file:README.rst
Expand All @@ -21,7 +21,7 @@ project_urls =
url = https://www.nipreps.org/sdcflows

[options]
python_requires = >=3.6
python_requires = >=3.7
setup_requires =
setuptools >= 42.0
setuptools_scm >= 3.4
Expand All @@ -31,7 +31,6 @@ install_requires =
nibabel >=3.0.1
nipype >=1.5.1,<2.0
niworkflows >= 1.4.0rc0
numpy <1.20; python_version < "3.7"
numpy
pybids >= 0.11.1
scikit-image
Expand Down