From d728ad4c6418a53efa7c478320b49de3b234053b Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 27 Aug 2026 17:55:06 -0400 Subject: [PATCH] Add testing for Python 3.14 --- .github/workflows/main.yml | 2 +- ChangeLog | 2 ++ setup.py | 1 + tox.ini | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7303a2b..4e8a9d0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 diff --git a/ChangeLog b/ChangeLog index 26e49a5..39f3506 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Unreleased + * Added testing for Python 3.14. + * Removed Python 3.9 support. Sun, 14 Jan 2024 08:49:00 -0700 Sean Reifschneider diff --git a/setup.py b/setup.py index e4ca6df..c6d887a 100644 --- a/setup.py +++ b/setup.py @@ -36,5 +36,6 @@ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ], ) diff --git a/tox.ini b/tox.ini index 813ebac..33457f9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py{310,311,312},pypy,pep8 +envlist = py{310,311,312,313,314},pypy,pep8 skipsdist = True [testenv]