What do I get from 'cvs co Zope'?
It appears that when I currently do 'cvs co Zope' I get a version that already requires Python 2.2.2. GvR's zdctl.py stuff uses lambdas in a way that Python 2.1 does not grok. How can I get at a Python 2.1.3 post 2.6.0 checkout? Thanks, Stefan -- Those who write software only for pay should go hurt some other field. /Erik Naggum/
Stefan H. Holek wrote:
It appears that when I currently do 'cvs co Zope' I get a version that already requires Python 2.2.2. GvR's zdctl.py stuff uses lambdas in a way that Python 2.1 does not grok.
How can I get at a Python 2.1.3 post 2.6.0 checkout?
You have to specify the correct branch: cvs -z7 -d :pserver:anonymous@cvs.zope.org:/cvs-repository checkout -r Zope-2_6-branch Zope please read: http://dev.zope.org/CVS/FrontPage -mj
Yes, cvs co Zope checks out the HEAD, which is 2.7 and requires python 2.2.x. Try: co -r Zope-2_6-branch Zope Which will give you the 2.6 maintenance branch. hth, -Casey On Monday 02 December 2002 10:42 am, Stefan H. Holek wrote:
It appears that when I currently do 'cvs co Zope' I get a version that already requires Python 2.2.2. GvR's zdctl.py stuff uses lambdas in a way that Python 2.1 does not grok.
How can I get at a Python 2.1.3 post 2.6.0 checkout?
Thanks, Stefan
-- Those who write software only for pay should go hurt some other field. /Erik Naggum/
_______________________________________________ Zope-Dev maillist - Zope-Dev@zope.org http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
participants (3)
-
Casey Duncan -
Maik Jablonski -
Stefan H. Holek