From d3204373c4bba38a09db92f910d048222b8d6f0f Mon Sep 17 00:00:00 2001 From: David Bieber Date: Fri, 20 Sep 2024 07:20:04 -0700 Subject: [PATCH] Include Python 3.13 in github actions (#554) * Include Python 3.13 in github actions list * Include version in supported versions list --- .github/workflows/build.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6649201..63c87edf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"] steps: # Checkout the repo. diff --git a/setup.py b/setup.py index 82073be4..beb367cf 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Operating System :: OS Independent', 'Operating System :: POSIX',