Skip to content

Commit 49d52d3

Browse files
committed
MNT: Drop Python 3.7 support, test through 3.11
1 parent 2009ceb commit 49d52d3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.7, 3.8, 3.9]
19+
python-version: ['3.8', '3.9', '3.10', '3.11']
2020

2121
steps:
2222
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
max-parallel: 5
1313
matrix:
14-
python-version: [3.7, 3.8, 3.9]
14+
python-version: ['3.8', '3.9', '3.10', '3.11']
1515

1616
steps:
1717
- name: Git settings (pacify DataLad)

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ classifiers =
66
Intended Audience :: Science/Research
77
Topic :: Scientific/Engineering :: Image Recognition
88
License :: OSI Approved :: BSD License
9-
Programming Language :: Python :: 3.7
109
Programming Language :: Python :: 3.8
1110
Programming Language :: Python :: 3.9
11+
Programming Language :: Python :: 3.10
12+
Programming Language :: Python :: 3.11
1213
description = NiTransforms -- Neuroimaging spatial transforms in Python.
1314
license = MIT License
1415
long_description = file:README.md
@@ -20,7 +21,7 @@ project_urls =
2021
url = https://github.com/nipy/nitransforms
2122

2223
[options]
23-
python_requires = >= 3.7
24+
python_requires = >= 3.8
2425
install_requires =
2526
numpy >= 1.21.0
2627
scipy >= 1.6.0

0 commit comments

Comments
 (0)