Skip to content

Commit 435073c

Browse files
authored
chore: add python 3.13 to ci / pyproject.toml (#2385)
* chore: add python 3.13 to ci / pyproject.toml * update hatch matrix
1 parent 4d663cc commit 435073c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python-version: ['3.11', '3.12']
24+
python-version: ['3.11', '3.12', '3.13']
2525
numpy-version: ['1.25', '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
@@ -49,6 +49,7 @@ classifiers = [
4949
'Programming Language :: Python :: 3',
5050
'Programming Language :: Python :: 3.11',
5151
'Programming Language :: Python :: 3.12',
52+
'Programming Language :: Python :: 3.13',
5253
]
5354
license = {text = "MIT License"}
5455
keywords = ["Python", "compressed", "ndimensional-arrays", "zarr"]
@@ -132,17 +133,17 @@ dependencies = [
132133
features = ["test", "extra"]
133134

134135
[[tool.hatch.envs.test.matrix]]
135-
python = ["3.11", "3.12"]
136+
python = ["3.11", "3.12", "3.13"]
136137
numpy = ["1.25", "1.26", "2.0"]
137138
version = ["minimal"]
138139

139140
[[tool.hatch.envs.test.matrix]]
140-
python = ["3.11", "3.12"]
141+
python = ["3.11", "3.12", "3.13"]
141142
numpy = ["1.25", "1.26", "2.0"]
142143
features = ["optional"]
143144

144145
[[tool.hatch.envs.test.matrix]]
145-
python = ["3.11", "3.12"]
146+
python = ["3.11", "3.12", "3.13"]
146147
numpy = ["1.25", "1.26", "2.0"]
147148
features = ["gpu"]
148149

@@ -163,7 +164,7 @@ dependencies = [
163164
features = ["test", "extra", "gpu"]
164165

165166
[[tool.hatch.envs.gputest.matrix]]
166-
python = ["3.11", "3.12"]
167+
python = ["3.11", "3.12", "3.13"]
167168
numpy = ["1.25", "1.26", "2.0"]
168169
version = ["minimal"]
169170

0 commit comments

Comments
 (0)