From 9e5fc333cbd76a39be37327b2bbb3fdbf5ae25d0 Mon Sep 17 00:00:00 2001 From: Jason Madden Date: Thu, 2 Jul 2026 10:37:40 -0500 Subject: [PATCH] Try adding support for 3.15 --- .github/workflows/tests.yml | 9 ++++++++- CHANGES.rst | 1 + setup.py | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4e7fe14..816600b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,14 @@ jobs: test: strategy: matrix: - python-version: ["pypy-3.11", "3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: + - "pypy-3.11" + - "3.10" + - "3.11" + - "3.12" + - "3.13" + - "3.14" + - "3.15-dev" extras: - "[test,docs,zodb,test-zodb]" diff --git a/CHANGES.rst b/CHANGES.rst index a1db423..ae0e1fa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,7 @@ ================== - Add ``patch_object`` to the test bases. +- Add support for Python 3.15. 4.4.0 (2025-11-14) diff --git a/setup.py b/setup.py index 930976b..b20b21a 100755 --- a/setup.py +++ b/setup.py @@ -47,6 +47,7 @@ def _read(fname): 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: 3.14', + 'Programming Language :: Python :: 3.15', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Testing',