Skip to content

Commit 5ac1f40

Browse files
committed
MNT: Drop Python 3.8 support
1 parent c8afbfa commit 5ac1f40

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,14 @@ jobs:
122122
runs-on: ubuntu-latest
123123
strategy:
124124
matrix:
125-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
125+
python-version: ["3.9", "3.10", "3.11", "3.12"]
126126
install: [repo]
127127
include:
128-
- python-version: "3.11"
128+
- python-version: "3.12"
129129
install: sdist
130-
- python-version: "3.11"
130+
- python-version: "3.12"
131131
install: wheel
132-
- python-version: "3.11"
132+
- python-version: "3.12"
133133
install: editable
134134

135135
env:
@@ -201,7 +201,8 @@ jobs:
201201
runs-on: ubuntu-latest
202202
strategy:
203203
matrix:
204-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
204+
# Only run --pre tests on Python versions within SPEC0 support
205+
python-version: ["3.11", "3.12"]
205206
install: [repo]
206207
pip-flags: ['--pre']
207208

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ dynamic = ["version"]
88
description = "NeuroImaging Workflows provides processing tools for magnetic resonance images of the brain."
99
readme = "README.rst"
1010
license = {file = "LICENSE"}
11-
requires-python = ">= 3.8"
11+
requires-python = ">= 3.9"
1212
authors = [
1313
{ name = "The NiPreps Developers", email = "[email protected]" },
1414
]
1515
classifiers = [
1616
"Development Status :: 4 - Beta",
1717
"Intended Audience :: Science/Research",
1818
"License :: OSI Approved :: Apache Software License",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)