summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2021-06-02 16:50:57 +0200
committerMichael Howitz <mh@gocept.com>2021-06-02 16:50:57 +0200
commit246617b01c189b5e238aca3d1d84ef5fa4e00aac (patch)
tree3c3b49feeec635ffeb850d1414e98814251f7fbc
parent4f537d48253a6d0ceadca3967c96b88bfff5baab (diff)
downloadzope-security-re-enable-zope.untrustedpython.tar.gz
Update to zope.untrustedpython >= 5.re-enable-zope.untrustedpython
The extra ``untrustedpython`` now for Python 3, too, installs ``zope.untrustedpython``.
-rw-r--r--CHANGES.rst5
-rw-r--r--setup.py7
2 files changed, 6 insertions, 6 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index eb201f4..482514f 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,10 +2,11 @@
Changes
=========
-5.1.2 (unreleased)
+5.2.0 (unreleased)
==================
-- Nothing changed yet.
+- The extra ``untrustedpython`` now for Python 3, too, installs
+ ``zope.untrustedpython``.
5.1.1 (2020-03-23)
diff --git a/setup.py b/setup.py
index c049a00..149c070 100644
--- a/setup.py
+++ b/setup.py
@@ -127,7 +127,7 @@ TESTS_REQUIRE = [
setup(name='zope.security',
- version='5.1.2.dev0',
+ version='5.2.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Zope Security Framework',
@@ -182,10 +182,9 @@ setup(name='zope.security',
'pytz': [
"pytz"
],
- 'untrustedpython:python_version == "2.7"': [
- 'zope.untrustedpython',
+ 'untrustedpython': [
+ 'zope.untrustedpython >= 5.0.dev0',
],
- 'untrustedpython:python_version >= "3.3"': [],
'zcml': [
'zope.configuration'
],