Skip to content

Commit

Permalink
MNT: Drop Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Oct 4, 2024
1 parent b91ee6a commit 9a56a5c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/contrib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: [3.8]
python-version: ["3.12"]
nipype-extras: ["dev"]
check: ["specs", "style"]
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,22 +91,22 @@ jobs:
strategy:
matrix:
os: ["ubuntu-22.04"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
check: ["test"]
pip-flags: [""]
depends: ["REQUIREMENTS"]
deb-depends: [false]
nipype-extras: ["doc,tests,profiler"]
include:
- os: ubuntu-22.04
python-version: "3.8"
python-version: "3.9"
check: test
pip-flags: ""
depends: REQUIREMENTS
deb-depends: true
nipype-extras: doc,tests,profiler,duecredit,ssh
- os: ubuntu-20.04
python-version: 3.8
python-version: "3.9"
check: test
pip-flags: ""
depends: REQUIREMENTS
Expand Down
3 changes: 1 addition & 2 deletions nipype/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,13 @@ def get_nipype_gitversion():
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
PYTHON_REQUIRES = ">= 3.8"
PYTHON_REQUIRES = ">= 3.9"

description = "Neuroimaging in Python: Pipelines and Interfaces"

Expand Down

0 comments on commit 9a56a5c

Please sign in to comment.