From 97c67a6f150c649924646890d1f7b1b29a4077cf Mon Sep 17 00:00:00 2001 From: Joe Hamman Date: Fri, 21 Jun 2024 10:22:51 -0700 Subject: [PATCH 1/4] Bump NumPy to 2.0 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0e67ad79a..4a4249e8eb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: python-version: ['3.10', '3.11'] - numpy-version: ['1.24', '1.26', '2.0.0rc1'] + numpy-version: ['1.24', '1.26', '2.0'] dependency-set: ["minimal", "optional"] steps: From 95e7deb57bb1006eb43e0d42881805fff9958a0a Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Fri, 21 Jun 2024 15:50:54 -0700 Subject: [PATCH 2/4] update pyproject.toml and add python 3.12 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 96a884b737..3e71f1293a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -125,12 +125,12 @@ features = ["extra"] [[tool.hatch.envs.test.matrix]] python = ["3.10", "3.11"] -numpy = ["1.24", "1.26", "2.0.0rc1"] +numpy = ["1.24", "1.26", "2.0"] version = ["minimal"] [[tool.hatch.envs.test.matrix]] python = ["3.10", "3.11"] -numpy = ["1.24", "1.26", "2.0.0rc1"] +numpy = ["1.24", "1.26", "2.0"] features = ["optional"] [tool.hatch.envs.test.scripts] From d85e61d9d3be942a94a4b7dc3b50ef900182340e Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Fri, 21 Jun 2024 15:51:26 -0700 Subject: [PATCH 3/4] update pyproject.toml and add python 3.12 --- .github/workflows/test.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a4249e8eb..48e579711b 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.10', '3.11'] + python-version: ['3.10', '3.11', '3.12'] numpy-version: ['1.24', '1.26', '2.0'] dependency-set: ["minimal", "optional"] diff --git a/pyproject.toml b/pyproject.toml index 3e71f1293a..d1488c054d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -124,12 +124,12 @@ extra-dependencies = [ features = ["extra"] [[tool.hatch.envs.test.matrix]] -python = ["3.10", "3.11"] +python = ["3.10", "3.11", "3.12"] numpy = ["1.24", "1.26", "2.0"] version = ["minimal"] [[tool.hatch.envs.test.matrix]] -python = ["3.10", "3.11"] +python = ["3.10", "3.11", "3.12"] numpy = ["1.24", "1.26", "2.0"] features = ["optional"] From a0713ad27ecc6d19d41a6124c7f54939a64937e3 Mon Sep 17 00:00:00 2001 From: Joe Hamman Date: Mon, 1 Jul 2024 15:10:28 -0700 Subject: [PATCH 4/4] revert 3.12 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48e579711b..4a4249e8eb 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.10', '3.11', '3.12'] + python-version: ['3.10', '3.11'] numpy-version: ['1.24', '1.26', '2.0'] dependency-set: ["minimal", "optional"]