Commit b7b1cba7 authored by Reinout van Rees's avatar Reinout van Rees Committed by GitHub

Merge pull request #461 from buildout/reinout-update-egg-to-buildout-dependency

Fix dependencies between zc.buildout and zc.recipe.egg after zc.recipe.egg 2.0.6 release
parents 684c6876 5d2987ef
...@@ -4,7 +4,7 @@ Change History ...@@ -4,7 +4,7 @@ Change History
2.12.1 (unreleased) 2.12.1 (unreleased)
=================== ===================
- Nothing changed yet. - zc.buildout now explicitly requests zc.recipe.egg >=2.0.6 now.
2.12.0 (2018-07-02) 2.12.0 (2018-07-02)
......
...@@ -378,7 +378,7 @@ class Buildout(DictMixin): ...@@ -378,7 +378,7 @@ class Buildout(DictMixin):
pkg_resources.Requirement.parse('zc.buildout') pkg_resources.Requirement.parse('zc.buildout')
).version), ).version),
# Use 2, even though not final # Use 2, even though not final
('zc.recipe.egg', '>=2.0.0a3'), ('zc.recipe.egg', '>=2.0.6'),
) )
if k not in versions if k not in versions
)) ))
......
...@@ -3104,7 +3104,7 @@ or paths to use:: ...@@ -3104,7 +3104,7 @@ or paths to use::
>>> print_(system(buildout + ' -csetup.cfg init demo other ./src'), end='') >>> print_(system(buildout + ' -csetup.cfg init demo other ./src'), end='')
Creating '/sample-bootstrapped/setup.cfg'. Creating '/sample-bootstrapped/setup.cfg'.
Creating directory '/sample-bootstrapped/develop-eggs'. Creating directory '/sample-bootstrapped/develop-eggs'.
Getting distribution for 'zc.recipe.egg>=2.0.0a3'. Getting distribution for 'zc.recipe.egg>=2.0.6'.
Got zc.recipe.egg Got zc.recipe.egg
Installing py. Installing py.
Getting distribution for 'demo'. Getting distribution for 'demo'.
......
...@@ -3031,14 +3031,14 @@ def want_new_zcrecipeegg(): ...@@ -3031,14 +3031,14 @@ def want_new_zcrecipeegg():
... eggs = demo ... eggs = demo
... ''') ... ''')
>>> print_(system(join('bin', 'buildout')), end='') # doctest: +ELLIPSIS >>> print_(system(join('bin', 'buildout')), end='') # doctest: +ELLIPSIS
Getting distribution for 'zc.recipe.egg<2dev,>=2.0.0a3'... Getting distribution for 'zc.recipe.egg<2dev,>=2.0.6'...
While: While:
Installing. Installing.
Getting section egg. Getting section egg.
Initializing section egg. Initializing section egg.
Installing recipe zc.recipe.egg <2dev. Installing recipe zc.recipe.egg <2dev.
Getting distribution for 'zc.recipe.egg<2dev,>=2.0.0a3'. Getting distribution for 'zc.recipe.egg<2dev,>=2.0.6'.
Error: Couldn't find a distribution for 'zc.recipe.egg<2dev,>=2.0.0a3'. Error: Couldn't find a distribution for 'zc.recipe.egg<2dev,>=2.0.6'.
""" """
def macro_inheritance_bug(): def macro_inheritance_bug():
......
...@@ -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