diff options
| author | Michael Howitz <mh@gocept.com> | 2019-04-18 08:02:57 +0200 |
|---|---|---|
| committer | Michael Howitz <mh@gocept.com> | 2019-04-18 08:02:57 +0200 |
| commit | 9c9df6931309fbb04286df6828647e7f2d634b84 (patch) | |
| tree | 41073e57653060bd458b8b6741dd6951e63f6428 | |
| parent | 3042b9fa7c37aa0d0b61efcdb0b1a436fef9bf59 (diff) | |
| download | zope-interface-fix-68.tar.gz | |
Fix issue with missing `__init__.py`.fix-68
Fixes #68.
| -rw-r--r-- | CHANGES.rst | 4 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 17c8051..7a00b09 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,7 +4,9 @@ Changes 4.6.1 (unreleased) ------------------ -- Nothing changed yet. +- Fix issue with missing ``__init__.py`` by requiring a ``setuptools`` version + which supports PEP 420. + (`#68 <https://github.com/zopefoundation/zope.interface/issues/68>`_) 4.6.0 (2018-10-23) @@ -132,7 +132,7 @@ setup(name='zope.interface', include_package_data=True, zip_safe=False, tests_require=tests_require, - install_requires=['setuptools'], + install_requires=['setuptools >= 40.3'], python_requires=', '.join(( '>=2.7', '!=3.0.*', |
