From 3bb23708fca2d85b5b5981e268e3ef7feccf0653 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 16 Nov 2025 19:30:45 +1000 Subject: [PATCH] Support for Python 3.14 --- .github/workflows/testing.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index bdf8dd3ae..2760a66ac 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest"] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13" "3.14"] #include: # only test with Python 3.10 on Windows # - os: windows-latest diff --git a/setup.py b/setup.py index 2bf73b36b..5685ce694 100644 --- a/setup.py +++ b/setup.py @@ -84,6 +84,7 @@ setup( "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", ], )