From a6db34345b09fc366fa7aac527daf3ca5d901a29 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 29 Nov 2024 08:44:44 -0500 Subject: [PATCH] Add support for Python 3.13 --- .github/workflows/test.yml | 1 + CHANGELOG.md | 2 +- docs/changelog.rst | 2 +- pyproject.toml | 1 + tox.ini | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a4bd48..551e47d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' - 'pypy-3.8' - 'pypy-3.9' - 'pypy-3.10' diff --git a/CHANGELOG.md b/CHANGELOG.md index c9f453e..5d00518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ v0.6.0 (in development) ----------------------- -- Support Python 3.11 and 3.12 +- Support Python 3.11, 3.12, and 3.13 - Migrated from setuptools to hatch - Drop support for Python 3.7 diff --git a/docs/changelog.rst b/docs/changelog.rst index ba15b3d..6ecbe15 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,7 +5,7 @@ Changelog v0.6.0 (in development) ----------------------- -- Support Python 3.11 and 3.12 +- Support Python 3.11, 3.12, and 3.13 - Migrated from setuptools to hatch - Drop support for Python 3.7 diff --git a/pyproject.toml b/pyproject.toml index 3066254..6b9df54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,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", "License :: OSI Approved :: MIT License", diff --git a/tox.ini b/tox.ini index 4d45597..2fa422c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,typing,py38,py39,py310,py311,py312,pypy3 +envlist = lint,typing,py38,py39,py310,py311,py312,py313,pypy3 skip_missing_interpreters = True isolated_build = True minversion = 3.3.0