From fddc7c3e02c76939902e474c1b23549558e07f78 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 19 Feb 2026 10:44:21 -0500 Subject: [PATCH] chore: add Python 3.14 to tests Signed-off-by: Henry Schreiner --- .github/workflows/tests.yml | 1 + .readthedocs.yml | 8 ++------ setup.py | 1 + tox.ini | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b6530cb..762b56f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,6 +19,7 @@ jobs: - "3.11" - "3.12" - "3.13" + - "3.14" runs-on: ubuntu-latest steps: diff --git a/.readthedocs.yml b/.readthedocs.yml index 17a626b..3a0b7ea 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -19,13 +19,9 @@ sphinx: # Set the version of Python and other tools you might need build: - os: ubuntu-22.04 + os: ubuntu-24.04 tools: - python: "3.11" - # You can also specify other tool versions: - # nodejs: "19" - # rust: "1.64" - # golang: "1.19" + python: "3.14" # Set the version of Python and requirements required to build your # docs diff --git a/setup.py b/setup.py index 442a95a..1d2ac73 100644 --- a/setup.py +++ b/setup.py @@ -81,6 +81,7 @@ def read_version_number(): "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", 'Topic :: Documentation', diff --git a/tox.ini b/tox.ini index b781669..6ac6556 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py38,py39,310,311,312,313,pypy3,docs +envlist=py38,py39,py310,py311,py312,py313,py314,pypy3,docs [testenv] usedevelop = false