Skip to content

Commit

Permalink
Merge branch 'master' into isort5
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Sep 28, 2020
2 parents d4beacb + 9cc7273 commit db128f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Products.CMFUid Changelog
=========================

3.0.3 (unreleased)
3.1.0 (unreleased)
------------------

- Fixed deprecation warning for zope.component.interfaces.IObjectEvent.

- Drop support for ``python setup.py test`` which is broken in Python 3.7+.


3.0.2 (2020-06-24)
------------------
Expand Down
17 changes: 6 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def _read(name):

setup(
name='Products.%s' % NAME,
version='3.0.3.dev0',
version='3.1.0.dev0',
description='Uid product for the Zope Content Management Framework',
long_description=README,
classifiers=[
Expand Down Expand Up @@ -48,24 +48,19 @@ def _read(name):
include_package_data=True,
namespace_packages=['Products'],
zip_safe=False,
setup_requires=[
'eggtestinfo',
],
install_requires=[
'Products.CMFCore >= 2.4.0dev',
'Products.ZCatalog >= 4.1.1',
'Zope',
'setuptools',
],
tests_require=[
'zope.testing >= 3.7.0',
],
test_loader='zope.testing.testrunner.eggsupport:SkipLayers',
test_suite='Products.%s.tests' % NAME,
extras_require={
'test': [
'zope.testing >= 3.7.0',
],
},
entry_points="""
[zope2.initialize]
Products.%s = Products.%s:initialize
[distutils.commands]
ftest = zope.testing.testrunner.eggsupport:ftest
""" % (NAME, NAME),
)

0 comments on commit db128f2

Please sign in to comment.