Skip to content

Commit 81a866b

Browse files
committed
chore: Test on Python 3.13
1 parent 8e2fc23 commit 81a866b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/tox.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
needs: [cache-test-data]
6767
strategy:
6868
matrix:
69-
python-version: ["3.9", "3.10", "3.11", "3.12"]
69+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
7070
dependencies: [latest, pre]
7171
include:
7272
- python-version: "3.9"

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1819
]
1920
description = "NiTransforms -- Neuroimaging spatial transforms in Python."
2021
license = {text = "MIT License"}

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
requires =
33
tox>=4
44
envlist =
5-
py3{9,10,11,12}-latest
5+
py3{9,10,11,12,13}-latest
66
py39-min
7-
py3{11,12}-pre
7+
py3{11,12,13}-pre
88
skip_missing_interpreters = true
99

1010
# Configuration that allows us to split tests across GitHub runners effectively

0 commit comments

Comments
 (0)