From ff30ece9635d6011a3dd00a922a1b5233e15d83d Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Fri, 18 Oct 2024 19:34:55 +0200 Subject: [PATCH] CI: Verify support on Python 3.13 --- .github/workflows/tests.yml | 5 ++++- pyproject.toml | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3ad1edb..27e098b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,10 @@ jobs: "macos-12", "macos-latest", ] - python-version: ["3.7", "3.11", "3.12"] + python-version: [ + "3.7", + "3.13", + ] # Doesn't work on macOS (ARM) with older versions of Python. exclude: diff --git a/pyproject.toml b/pyproject.toml index 09cadce..68afeb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: SQL",