[Checkins] SVN: zc.buildout/branches/regebro-python3/bootstrap/bootstrap.py Working around the Distribute 0.6.14 bugs.

Lennart Regebro regebro at gmail.com
Tue Nov 23 09:16:34 EST 2010


Log message for revision 118533:
  Working around the Distribute 0.6.14 bugs.
  

Changed:
  U   zc.buildout/branches/regebro-python3/bootstrap/bootstrap.py

-=-
Modified: zc.buildout/branches/regebro-python3/bootstrap/bootstrap.py
===================================================================
--- zc.buildout/branches/regebro-python3/bootstrap/bootstrap.py	2010-11-23 13:07:17 UTC (rev 118532)
+++ zc.buildout/branches/regebro-python3/bootstrap/bootstrap.py	2010-11-23 14:16:33 UTC (rev 118533)
@@ -179,6 +179,11 @@
         setup_args['download_base'] = options.download_base
     if options.use_distribute:
         setup_args['no_fake'] = True
+    # XXX !!! This like is here, specifically for me, to avoid some bugs in 
+    # Distribute 0.6.14 under Python 3. It will break the tests for everyone
+    # else, and should be removed once Distribute 0.6.15 is released, which
+    # hopefully is once zc.buildout works under Python 3.
+    setup_args['download_base'] = "file:///home/projects/zc.buildout/"
     ez['use_setuptools'](**setup_args)
     if 'pkg_resources' in sys.modules:
         reload(sys.modules['pkg_resources'])



More information about the checkins mailing list