From 472724f520fc3731b46965baa6f50df7cb90f732 Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Tue, 15 Oct 2024 16:37:36 -0700 Subject: [PATCH 1/2] chore: add python 3.13 to ci / pyproject.toml --- .github/workflows/test.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ae24fca6f5..3bd6226922 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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"] diff --git a/pyproject.toml b/pyproject.toml index 3dc46a0f9c..03bc107374 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,6 +47,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"] From 6a1c411a79c52b07349870d6de02d29a438847f7 Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Tue, 15 Oct 2024 16:43:20 -0700 Subject: [PATCH 2/2] update hatch matrix --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 03bc107374..f6a2819316 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -131,17 +131,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"] @@ -162,7 +162,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"]