Commit 7eccacdf authored by Reinout van Rees's avatar Reinout van Rees

zc.recipe.egg's setup.py now requires zc.buildout >= 2.12.0

parent 684c6876
...@@ -4,7 +4,8 @@ Change History ...@@ -4,7 +4,8 @@ Change History
2.0.7 (unreleased) 2.0.7 (unreleased)
================== ==================
- Nothing changed yet. - For the 2.0.6 change, we require zc.buildout 2.12.0. The `install_requires`
in `setup.py` now also says that.
2.0.6 (2018-07-02) 2.0.6 (2018-07-02)
......
...@@ -71,7 +71,7 @@ setup( ...@@ -71,7 +71,7 @@ setup(
package_dir = {'':'src'}, package_dir = {'':'src'},
namespace_packages = ['zc', 'zc.recipe'], namespace_packages = ['zc', 'zc.recipe'],
install_requires = [ install_requires = [
'zc.buildout >=1.2.0', 'zc.buildout >=2.12.0',
'setuptools'], 'setuptools'],
tests_require = ['zope.testing'], tests_require = ['zope.testing'],
test_suite = name+'.tests.test_suite', test_suite = name+'.tests.test_suite',
......
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