Skip to content

Commit 63433c9

Browse files
committed
maint: bump earliest supported Python to 3.8
1 parent 9055314 commit 63433c9

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/pythonpackage.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
runs-on: ubuntu-latest
112112
strategy:
113113
matrix:
114-
python-version: [3.7, 3.8, 3.9, "3.10"]
114+
python-version: [3.8, 3.9, "3.10"]
115115
install: [repo]
116116
include:
117117
- python-version: "3.10"
@@ -193,7 +193,7 @@ jobs:
193193
runs-on: ubuntu-latest
194194
strategy:
195195
matrix:
196-
python-version: [3.7, 3.8, 3.9, "3.10"]
196+
python-version: [3.8, 3.9, "3.10"]
197197
install: [repo]
198198
pip-flags: ['--pre']
199199

@@ -253,9 +253,9 @@ jobs:
253253
runs-on: ubuntu-latest
254254
steps:
255255
- uses: actions/checkout@v3
256-
- name: Set up Python 3.7
256+
- name: Set up Python 3.8
257257
uses: actions/setup-python@v4
258258
with:
259-
python-version: 3.7
259+
python-version: 3.8
260260
- run: pip install flake8
261261
- run: flake8 niworkflows/

setup.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ classifiers =
66
Intended Audience :: Science/Research
77
Topic :: Scientific/Engineering :: Image Recognition
88
License :: OSI Approved :: Apache Software License
9-
Programming Language :: Python :: 3.7
109
Programming Language :: Python :: 3.8
1110
Programming Language :: Python :: 3.9
1211
Programming Language :: Python :: 3.10
@@ -24,7 +23,7 @@ project_urls =
2423
url = https://www.nipreps.org
2524

2625
[options]
27-
python_requires = >= 3.7
26+
python_requires = >= 3.8
2827
install_requires =
2928
attrs
3029
jinja2

0 commit comments

Comments
 (0)