Skip to content

Commit 6f504c8

Browse files
Start testing with Python 3.13
Release candidates are already available in GitHub runners.
1 parent 4cbb17e commit 6f504c8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
test:
1919
name: py=${{ matrix.python-version }}, np=${{ matrix.numpy-version }}, deps=${{ matrix.dependency-set }}
2020

21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-24.04
2222
strategy:
2323
matrix:
24-
python-version: ['3.10', '3.11', '3.12']
24+
python-version: ['3.10', '3.11', '3.12', '3.13']
2525
numpy-version: ['1.24', '1.26', '2.0']
2626
dependency-set: ["minimal", "optional"]
2727

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ classifiers = [
4848
'Programming Language :: Python :: 3.10',
4949
'Programming Language :: Python :: 3.11',
5050
'Programming Language :: Python :: 3.12',
51+
'Programming Language :: Python :: 3.13',
5152
]
5253
license = {text = "MIT License"}
5354
keywords = ["Python", "compressed", "ndimensional-arrays", "zarr"]
@@ -130,17 +131,17 @@ dependencies = [
130131
features = ["test", "extra"]
131132

132133
[[tool.hatch.envs.test.matrix]]
133-
python = ["3.10", "3.11", "3.12"]
134+
python = ["3.10", "3.11", "3.12", "3.13"]
134135
numpy = ["1.24", "1.26", "2.0"]
135136
version = ["minimal"]
136137

137138
[[tool.hatch.envs.test.matrix]]
138-
python = ["3.10", "3.11", "3.12"]
139+
python = ["3.10", "3.11", "3.12", "3.13"]
139140
numpy = ["1.24", "1.26", "2.0"]
140141
features = ["optional"]
141142

142143
[[tool.hatch.envs.test.matrix]]
143-
python = ["3.10", "3.11", "3.12"]
144+
python = ["3.10", "3.11", "3.12", "3.13"]
144145
numpy = ["1.24", "1.26", "2.0"]
145146
features = ["gpu"]
146147

@@ -161,7 +162,7 @@ dependencies = [
161162
features = ["test", "extra", "gpu"]
162163

163164
[[tool.hatch.envs.gputest.matrix]]
164-
python = ["3.10", "3.11", "3.12"]
165+
python = ["3.10", "3.11", "3.12", "3.13"]
165166
numpy = ["1.24", "1.26", "2.0"]
166167
version = ["minimal"]
167168

0 commit comments

Comments
 (0)