From 4be653d78cd24aeca4252d5b45d5aca89e6d751b Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Mon, 21 Oct 2024 11:27:01 -0700 Subject: [PATCH] Mark Python 3.13 as officially supported (#1192) Make Python 3.13 officially support This change updates the unit testing to only use released versions of Python 3.13. It also updates the PyPI classifier to declare 3.13 support. Signed-off-by: Eric Brown --- .github/workflows/pythonpackage.yml | 2 +- setup.cfg | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 70c4748b9..edfd03ac3 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -51,7 +51,7 @@ jobs: ["3.10", "310"], ["3.11", "311"], ["3.12", "312"], - ["3.13.0-a - 3.13", "313"], + ["3.13", "313"], ] os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} diff --git a/setup.cfg b/setup.cfg index c745b02ed..4e11c3ec4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,6 +22,7 @@ classifier = Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Programming Language :: Python :: 3 :: Only Topic :: Security project_urls =