From b93373d4c364bf8b16b2d698448065891ef6366f Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 29 Nov 2024 08:43:02 -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 af4b3e1..44d5e1e 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 4dbb6e0..fab0653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ v0.7.0 (in development) ----------------------- -- Support Python 3.9, 3.10, 3.11, and 3.12 +- Support Python 3.9, 3.10, 3.11, 3.12, and 3.13 - Drop support for Python 3.5, 3.6, and 3.7 - `LogEntry`'s `__eq__` method now returns `NotImplemented` instead of `False` when comparing against non-`LogEntry` values diff --git a/docs/changelog.rst b/docs/changelog.rst index 5f8bfb9..fb2855f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,7 +5,7 @@ Changelog v0.7.0 (in development) ----------------------- -- Support Python 3.9, 3.10, 3.11, and 3.12 +- Support Python 3.9, 3.10, 3.11, 3.12, and 3.13 - Drop support for Python 3.5, 3.6, and 3.7 - `LogEntry`'s ``__eq__`` method now returns `NotImplemented` instead of `False` when comparing against non-`LogEntry` values diff --git a/pyproject.toml b/pyproject.toml index 2bad417..feaa79a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,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 4689aff..9f81301 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py38,py39,py310,py311,py312,pypy3 +envlist = lint,py38,py39,py310,py311,py312,py313,pypy3 skip_missing_interpreters = True isolated_build = True minversion = 3.3.0