From ae256d2ee79e9e3a58e645a65aac805ed6bc34ca Mon Sep 17 00:00:00 2001 From: slush Date: Wed, 4 Dec 2024 18:32:44 -0600 Subject: [PATCH] feat: support python 3.13 (#2393) Co-authored-by: antazoey --- .github/workflows/test.yaml | 2 +- pyproject.toml | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index eed3dd1541..5313a554cf 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -63,7 +63,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] # eventually add `windows-latest` - python-version: [3.9, "3.10", "3.11", "3.12"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] env: GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/pyproject.toml b/pyproject.toml index 5a5e27f308..711634407f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ write_to = "src/ape/version.py" # character. [tool.black] line-length = 100 -target-version = ['py39', 'py310', 'py311', 'py312'] +target-version = ['py39', 'py310', 'py311', 'py312', 'py313'] include = '\.pyi?$' [tool.pytest.ini_options] diff --git a/setup.py b/setup.py index 2a3a65f98d..2c8b7a851d 100644 --- a/setup.py +++ b/setup.py @@ -171,5 +171,6 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], )