From 9d054ad18d757a68e85046d9a625dd2430ba8fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Tue, 14 Oct 2025 14:18:08 +0200 Subject: [PATCH] [workflows:tests] include Python 3.14 & pypy3.11 --- .github/workflows/tests.yml | 2 ++ setup.py | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dcb0c702..070612cf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,7 +23,9 @@ jobs: - "3.11" - "3.12" - "3.13" + - "3.14" - "pypy3.9" + - "pypy3.11" steps: - uses: actions/checkout@v5 diff --git a/setup.py b/setup.py index f289d0f5..fd2bff7b 100644 --- a/setup.py +++ b/setup.py @@ -143,6 +143,7 @@ def build_setuptools(): "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 :: Internet :: WWW/HTTP",