From 5fd4c4a98865e611ff09b7d66a3271061afe1b01 Mon Sep 17 00:00:00 2001 From: Vincent Michel Date: Wed, 30 Oct 2024 13:46:49 +0100 Subject: [PATCH] Support python 3.13 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 486a605..2fd3514 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.8"] env: OS: ${{ matrix.os }} diff --git a/pyproject.toml b/pyproject.toml index da4868e..7681870 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dependencies = [ "typing-extensions", @@ -65,7 +66,7 @@ strict = true [tool.black] line-length = 88 -target_version = ["py38", "py39", "py310", "py311", "py312"] +target_version = ["py38", "py39", "py310", "py311", "py312", "py313"] [tool.coverage.report] exclude_also = ["if TYPE_CHECKING:", "assert False"]