Skip to content

Commit

Permalink
Drop 3.8 and add testing for 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
wtclarke committed Oct 21, 2024
1 parent bbd4adf commit 9bcb711
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ This document contains the nifti_mrs_tools release history in reverse chronologi

1.3.1 (Monday 21st October 2024)
--------------------------------
- Drop support for python 3.8. Testing extended to python 3.12 and 3.13.
- Fix compatibility issue with nibabel > 5.3

1.3.0 (Wednesday 26th June 2024)
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ license = BSD 3-Clause License
license_files = LICENSE
classifiers =
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3.13
author = William Clarke
author_email = william.clarke@ndcn.ox.ac.uk

Expand All @@ -22,7 +23,7 @@ install_requires =
nibabel>=5.3
fslpy
importlib_resources;python_version<'3.10'
python_requires = >=3.8
python_requires = >=3.9
packages = find_namespace:
package_dir =
= src
Expand Down

0 comments on commit 9bcb711

Please sign in to comment.