From 456e88c8cddf637c4bd27ed175dc4048c0b5a558 Mon Sep 17 00:00:00 2001 From: Jens Vagelpohl Date: Wed, 9 Oct 2024 18:52:07 +0200 Subject: [PATCH] - Add final support for Python 3.13 --- CHANGES.rst | 2 ++ setup.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 467d54c..07999aa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,8 @@ For changes before version 3.0, see ``HISTORY.rst``. 7.1 (unreleased) ---------------- +- Add final support for Python 3.13. + 7.0 (2024-05-30) ---------------- diff --git a/setup.py b/setup.py index 190e767..0d5862b 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: Implementation :: CPython', ], ext_modules=ext_modules, @@ -75,7 +76,7 @@ 'DateTime', # optional dependency of RestrictedPython 'ExtensionClass >= 4.2.1', 'Persistence >= 3.0a3', - 'RestrictedPython >= 5.1', + 'RestrictedPython >= 7.4', 'transaction', 'zExceptions', 'zope.component',