From 6f63d2b23f7d89534d083b0cc2bca507b3e27407 Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Tue, 5 Nov 2024 11:25:00 -0600 Subject: [PATCH 1/2] Add Python 3.13 support Add Python 3.13 to the build matrix and supported versions. --- .github/workflows/build.yaml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7d2e2212..29a86efe 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11", "3.12"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 8c897e84..14e2c033 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Scientific/Engineering :: Astronomy" ] keywords = ["lsst"] From 5fbda1f18222dde6a14410187c00b8ce61fbeb5c Mon Sep 17 00:00:00 2001 From: Jeremy McCormick Date: Mon, 2 Dec 2024 19:35:05 -0600 Subject: [PATCH 2/2] Add news fragment --- docs/changes/DM-47900.misc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 docs/changes/DM-47900.misc diff --git a/docs/changes/DM-47900.misc b/docs/changes/DM-47900.misc new file mode 100644 index 00000000..55d062ee --- /dev/null +++ b/docs/changes/DM-47900.misc @@ -0,0 +1,2 @@ +Add Python 3.13 to supported versions. +No code changes were required.