[Checkins] SVN: grokproject/trunk/grokproject/utils.py Temporarily pinned zc.buildout to version 1.4.3 to fix a version conflict with the pinned version in ZTK (1.4.3) during installation. This should be removed once a longer term solution is found.

Jeff Peterson jpeterso at rangebroadband.com
Wed Sep 8 10:05:22 EDT 2010


Log message for revision 116230:
  Temporarily pinned zc.buildout to version 1.4.3 to fix a version conflict with the pinned version in ZTK (1.4.3) during installation.  This should be removed once a longer term solution is found.

Changed:
  U   grokproject/trunk/grokproject/utils.py

-=-
Modified: grokproject/trunk/grokproject/utils.py
===================================================================
--- grokproject/trunk/grokproject/utils.py	2010-09-08 10:31:44 UTC (rev 116229)
+++ grokproject/trunk/grokproject/utils.py	2010-09-08 14:05:21 UTC (rev 116230)
@@ -118,8 +118,11 @@
         import setuptools.command.easy_install
         tmpdir = tempfile.mkdtemp()
         sys.path.append(tmpdir)
+	# Temporarily pinning zc.buildout to version 1.4.3 to fix a version conflict as ZTK and GTK are pinned to 1.4.3
+	# TODO Explore wholesale upgrades to buildout 1.5.x to take advantage of improvements that allow isolation from 
+	# the system site-packages, essentially eliminating the need for the virtualenv step in installation.
         setuptools.command.easy_install.main(extra_args +
-                                             ['-mNxd', tmpdir, 'zc.buildout'])
+                                             ['-mNxd', tmpdir, 'zc.buildout==1.4.3'])
 
         # Add downloaded buildout to PYTHONPATH by requiring it
         # through setuptools (this dance is necessary because the



More information about the checkins mailing list