From 4c5240c8d029d7067b548cb7fae751d64b5b3c5f Mon Sep 17 00:00:00 2001 From: Vincent Michel Date: Wed, 30 Oct 2024 13:48:39 +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 b1af51a..509ea0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,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", "pypy-3.9"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.8", "pypy-3.9"] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 518ad12..78578ad 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", "Programming Language :: Python :: 3 :: Only", ] @@ -50,7 +51,7 @@ testpaths = ["tests"] [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"]