[zc.buildout] another way of specifying egg versions?
Just reading this: http://pypi.python.org/pypi/zc.buildout/1.0.6#automatic-buildout-updates Is this pattern: [buildout] zc.buildout-version == 1.0.6 setuptools-version == 0.6 ...only applicable to buildout and setuptools or does it generalize to: [buildout] <egg>-version <setup tools operators> <version text> ? cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
Chris Withers wrote:
[buildout] zc.buildout-version == 1.0.6 setuptools-version == 0.6
...only applicable to buildout and setuptools or does it generalize to:
Okay, correct me if I'm wrong, but the answer is that the above are special magic keys that only apply to buildout and setuptools. Worse still, to get the intention of the above, you actually have to spell it like: setuptools-version = == 0.6c8 zc.buildout-version = == 1.0.6 :-( Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
On Jul 15, 2008, at 6:56 PM, Chris Withers wrote:
Just reading this:
http://pypi.python.org/pypi/zc.buildout/1.0.6#automatic-buildout-updates
Is this pattern:
[buildout] zc.buildout-version == 1.0.6 setuptools-version == 0.6
...only applicable to buildout and setuptools or does it generalize to:
[buildout] <egg>-version <setup tools operators> <version text>
?
No. Note that the options predated the versions feature, which accomplishes the same thing. These 2 options should probably be deprecated. Jim -- Jim Fulton Zope Corporation
participants (2)
-
Chris Withers
-
Jim Fulton