Commit ceaecd7f authored by Kai Lautaportti's avatar Kai Lautaportti

Set newest=false to avoid test breakage due to the new version of setuptools.

parent d565408f
...@@ -148,6 +148,7 @@ Let's create a buildout to build and install the package. ...@@ -148,6 +148,7 @@ Let's create a buildout to build and install the package.
>>> write('buildout.cfg', >>> write('buildout.cfg',
... """ ... """
... [buildout] ... [buildout]
... newest = false
... parts = package ... parts = package
... ...
... [package] ... [package]
...@@ -182,6 +183,7 @@ a custom location within the buildout:: ...@@ -182,6 +183,7 @@ a custom location within the buildout::
>>> write('buildout.cfg', >>> write('buildout.cfg',
... """ ... """
... [buildout] ... [buildout]
... newest = false
... parts = foobar ... parts = foobar
... perl_lib = ${buildout:directory}/perl_lib ... perl_lib = ${buildout:directory}/perl_lib
... ...
...@@ -221,6 +223,7 @@ filesystem and building that. ...@@ -221,6 +223,7 @@ filesystem and building that.
>>> write('buildout.cfg', >>> write('buildout.cfg',
... """ ... """
... [buildout] ... [buildout]
... newest = false
... parts = package ... parts = package
... ...
... [package] ... [package]
...@@ -255,6 +258,7 @@ more. Let's try again with a new buildout and provide more options. ...@@ -255,6 +258,7 @@ more. Let's try again with a new buildout and provide more options.
>>> write('buildout.cfg', >>> write('buildout.cfg',
... """ ... """
... [buildout] ... [buildout]
... newest = false
... parts = package ... parts = package
... ...
... [build-environment] ... [build-environment]
...@@ -350,6 +354,7 @@ and a new buildout to try it out ...@@ -350,6 +354,7 @@ and a new buildout to try it out
>>> write('buildout.cfg', >>> write('buildout.cfg',
... """ ... """
... [buildout] ... [buildout]
... newest = false
... parts = package ... parts = package
... ...
... [package] ... [package]
......
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