From 13ef45bfa244bc14595ef2efa21e51ec15d684ae Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Fri, 10 May 2024 19:09:21 +0100 Subject: [PATCH] Declare support for Python 3.13 --- .github/workflows/check.yml | 4 ++-- CHANGELOG.md | 3 +++ pyproject.toml | 1 + 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 4a43ba0..fafcc9f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -29,7 +29,7 @@ jobs: timeout-minutes: 5 strategy: matrix: - python-version: ["3.8", "3.12"] + python-version: ["3.8", "3.13"] fail-fast: false steps: - uses: actions/checkout@v4 @@ -62,7 +62,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] fail-fast: false steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index f3edc44..f84f389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ Bugfixes `typing_extensions.TypeVar` has the *default* parameter, which only exists on Python 3.13+ when using `typing.TypeVar`. +Other changes +* Declare support for Python 3.13 + ## 24.4.1 New error codes: diff --git a/pyproject.toml b/pyproject.toml index 495e9fd..864254b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance", ]