From ed2be226f4661849fb9e86b87c11c728967bff85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Perrin?= Date: Fri, 4 Oct 2024 07:00:27 +0000 Subject: [PATCH] Adjust minimal required version of zope.security test dependency Fixes #72 --- CHANGES.rst | 2 ++ setup.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 7b2c3c3..e9eab30 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,8 @@ 6.2 (unreleased) ================ +- Adjust minimal required version of ``zope.security`` test dependency to ``7.3``. + 6.1 (2024-10-02) ================ diff --git a/setup.py b/setup.py index 3dd2457..e36f142 100644 --- a/setup.py +++ b/setup.py @@ -135,7 +135,8 @@ def read(*rnames): zip_safe=False, extras_require={ 'test': [ - 'zope.security', # We have a circular dependency for testing + # We have a circular dependency with zope.security for testing + 'zope.security >= 7.3', 'zope.testrunner', ], 'docs': [