Skip to content

Commit

Permalink
chore: add python 3.13 to ci / pyproject.toml (#2385)
Browse files Browse the repository at this point in the history
* chore: add python 3.13 to ci / pyproject.toml

* update hatch matrix
  • Loading branch information
jhamman authored Oct 17, 2024
1 parent 4d663cc commit 435073c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
numpy-version: ['1.25', '1.26', '2.0']
dependency-set: ["minimal", "optional"]

Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
license = {text = "MIT License"}
keywords = ["Python", "compressed", "ndimensional-arrays", "zarr"]
Expand Down Expand Up @@ -132,17 +133,17 @@ dependencies = [
features = ["test", "extra"]

[[tool.hatch.envs.test.matrix]]
python = ["3.11", "3.12"]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "1.26", "2.0"]
version = ["minimal"]

[[tool.hatch.envs.test.matrix]]
python = ["3.11", "3.12"]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "1.26", "2.0"]
features = ["optional"]

[[tool.hatch.envs.test.matrix]]
python = ["3.11", "3.12"]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "1.26", "2.0"]
features = ["gpu"]

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

[[tool.hatch.envs.gputest.matrix]]
python = ["3.11", "3.12"]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "1.26", "2.0"]
version = ["minimal"]

Expand Down

0 comments on commit 435073c

Please sign in to comment.