From 9ef2280beb82ff33ffb591ffcbae71665f5e62e9 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Thu, 5 Mar 2026 13:38:04 -0600 Subject: [PATCH 1/4] Adds python3.13 to the project --- .github/workflows/ci.yml | 4 ++-- changes/381.housekeeping | 1 + pyproject.toml | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 changes/381.housekeeping diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 544488dc..20edb902 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] env: PYTHON_VER: "${{ matrix.python-version }}" steps: @@ -131,7 +131,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] runs-on: "ubuntu-24.04" env: PYTHON_VER: "${{ matrix.python-version }}" diff --git a/changes/381.housekeeping b/changes/381.housekeeping new file mode 100644 index 00000000..3043fd8f --- /dev/null +++ b/changes/381.housekeeping @@ -0,0 +1 @@ +Added Python 3.13 to supported versions and CI matrix. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c01362f0..e04e02fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,6 +13,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] include = [ "README.md", From 9e47e2b6a1a57f7473c7bf2a56247850de9d5640 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Thu, 5 Mar 2026 13:39:42 -0600 Subject: [PATCH 2/4] Updates issue item. --- changes/{381.housekeeping => 384.housekeeping} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename changes/{381.housekeeping => 384.housekeeping} (100%) diff --git a/changes/381.housekeeping b/changes/384.housekeeping similarity index 100% rename from changes/381.housekeeping rename to changes/384.housekeeping From 9d62c542364c0a33f27097d1b855154c53225b64 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Thu, 5 Mar 2026 19:43:32 -0600 Subject: [PATCH 3/4] Add Python 3.14 to supported versions and CI matrix --- .github/workflows/ci.yml | 4 ++-- changes/384.housekeeping | 2 +- pyproject.toml | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20edb902..a396123a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] env: PYTHON_VER: "${{ matrix.python-version }}" steps: @@ -131,7 +131,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] runs-on: "ubuntu-24.04" env: PYTHON_VER: "${{ matrix.python-version }}" diff --git a/changes/384.housekeeping b/changes/384.housekeeping index 3043fd8f..1385ab39 100644 --- a/changes/384.housekeeping +++ b/changes/384.housekeeping @@ -1 +1 @@ -Added Python 3.13 to supported versions and CI matrix. \ No newline at end of file +Added Python 3.13 and 3.14 to supported versions and CI matrix. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e04e02fb..5a790cf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] include = [ "README.md", From a335c2ae1df1b21c27cdf4c5997e9eb889acb36a Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 6 Mar 2026 14:50:47 -0600 Subject: [PATCH 4/4] Remove Python 3.14 from supported versions and CI matrix numpy 2.2.6 lacks Python 3.14 wheels; requires a dependency update first. --- .github/workflows/ci.yml | 4 ++-- changes/384.housekeeping | 2 +- pyproject.toml | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a396123a..20edb902 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.10", "3.11", "3.12", "3.13"] env: PYTHON_VER: "${{ matrix.python-version }}" steps: @@ -131,7 +131,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.10", "3.11", "3.12", "3.13"] runs-on: "ubuntu-24.04" env: PYTHON_VER: "${{ matrix.python-version }}" diff --git a/changes/384.housekeeping b/changes/384.housekeeping index 1385ab39..3043fd8f 100644 --- a/changes/384.housekeeping +++ b/changes/384.housekeeping @@ -1 +1 @@ -Added Python 3.13 and 3.14 to supported versions and CI matrix. \ No newline at end of file +Added Python 3.13 to supported versions and CI matrix. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 5a790cf0..e04e02fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,6 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", - "Programming Language :: Python :: 3.14", ] include = [ "README.md",