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
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)
......
......@@ -378,7 +378,7 @@ class Buildout(DictMixin):
pkg_resources.Requirement.parse('zc.buildout')
).version),
# Use 2, even though not final
('zc.recipe.egg', '>=2.0.0a3'),
('zc.recipe.egg', '>=2.0.6'),
)
if k not in versions
))
......
......@@ -3104,7 +3104,7 @@ or paths to use::
>>> print_(system(buildout + ' -csetup.cfg init demo other ./src'), end='')
Creating '/sample-bootstrapped/setup.cfg'.
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
Installing py.
Getting distribution for 'demo'.
......
......@@ -3031,14 +3031,14 @@ def want_new_zcrecipeegg():
... eggs = demo
... ''')
>>> 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:
Installing.
Getting section egg.
Initializing section egg.
Installing recipe zc.recipe.egg <2dev.
Getting distribution for 'zc.recipe.egg<2dev,>=2.0.0a3'.
Error: Couldn't find a 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.6'.
"""
def macro_inheritance_bug():
......
......@@ -4,7 +4,8 @@ Change History
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)
......
......@@ -71,7 +71,7 @@ setup(
package_dir = {'':'src'},
namespace_packages = ['zc', 'zc.recipe'],
install_requires = [
'zc.buildout >=1.2.0',
'zc.buildout >=2.12.0',
'setuptools'],
tests_require = ['zope.testing'],
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