Commit 4ab5213c authored by 's avatar

- require at least Zope 2.13.4

parent 7d95a8e7
......@@ -4,6 +4,8 @@ Products.DCWorkflow Changelog
2.3.0-alpha (unreleased)
------------------------
- Require at least Zope 2.13.4.
- StateChangeInfo: Removed support for deprecated '_isPortalRoot' marker.
- Hardened XML import parsing against missing boolean attributes.
......
......@@ -11,21 +11,14 @@
#
##############################################################################
""" Unit test layers.
$Id$
"""
from Testing.ZopeTestCase.layer import ZopeLite
from zope.testing.cleanup import cleanUp
from Zope2.App import zcml
from Products.CMFCore.testing import _DUMMY_ZCML
# BBB for Zope 2.12
try:
from Zope2.App import zcml
except ImportError:
from Products.Five import zcml
class ExportImportZCMLLayer(ZopeLite):
......
......@@ -46,11 +46,11 @@ setup(name='Products.%s' % NAME,
],
install_requires=[
'setuptools',
'Zope2 >= 2.12.11',
'Zope2 >= 2.13.4',
'Products.CMFCore',
# 'Products.ExternalMethod', # BBB: disabled for Zope 2.12
'Products.ExternalMethod',
'Products.GenericSetup',
# 'Products.PythonScripts', # BBB: disabled for Zope 2.12
'Products.PythonScripts',
],
tests_require=[
'zope.testing >= 3.7.0',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment