From 070ddb98bf19fa23113222228b2fe620ab65cd9a Mon Sep 17 00:00:00 2001 From: Benjamin Schubert Date: Sun, 26 Jan 2025 12:13:18 +0000 Subject: [PATCH] Add support for python3.13 --- .github/workflows/ci.yml | 1 + dwasfile.py | 2 +- pyproject.toml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c151489..7a9bb97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,6 +94,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" - "pypy3.10" include: - os: macos-latest diff --git a/dwasfile.py b/dwasfile.py index cfe021c..ef3fbdf 100644 --- a/dwasfile.py +++ b/dwasfile.py @@ -11,7 +11,7 @@ DOCS_REQUIREMENTS = "-rrequirements/requirements-docs.txt" TEST_REQUIREMENTS = "-rrequirements/requirements-test.txt" TYPES_REQUIREMENTS = "-rrequirements/requirements-types.txt" -SUPPORTED_PYTHONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"] +SUPPORTED_PYTHONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"] OLDEST_SUPPORTED_PYTHON = SUPPORTED_PYTHONS[0] PYTHON_FILES = [ "docs/conf.py", diff --git a/pyproject.toml b/pyproject.toml index 088d37a..1c44433 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,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", "Topic :: Software Development :: Testing",