]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: require new bundled setuptools-0.6c12dev
authorZooko O'Whielacronx <zooko@zooko.com>
Thu, 5 Feb 2009 16:29:23 +0000 (09:29 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Thu, 5 Feb 2009 16:29:23 +0000 (09:29 -0700)
ez_setup.py
setup.py

index 131f72c4acdd6f2559eb099b823c757036f5f661..f09fd0fcb407bc6bd1f122cb2ebc318ba2b767de 100644 (file)
@@ -14,12 +14,12 @@ the appropriate options to ``use_setuptools()``.
 This file can also be run as a script to install or upgrade setuptools.
 """
 import os, sys
-DEFAULT_VERSION = "0.6c11dev"
+DEFAULT_VERSION = "0.6c12dev"
 DEFAULT_DIR     = "misc/dependencies/"
 DEFAULT_URL     = "file:"+DEFAULT_DIR
 
 md5_data = {
-    'setuptools-0.6c11dev.egg': '9734e821d3388af78fceecb264b3e854',
+    'setuptools-0.6c12dev.egg': '770da1c9e5446cf04273f0f1cdb8c09a',
 }
 
 import sys, os
@@ -39,7 +39,7 @@ def _validate_md5(egg_name, data):
 
 def use_setuptools(
     version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
-    min_version="0.6c11dev", download_delay=15
+    min_version="0.6c12dev", download_delay=15
 ):
     """Automatically find/download setuptools and make it available on sys.path
 
index 6553c8344a39490bbbbf08bb19678787ff404df5..7183b684f62c71e3ff654370869fb18ef57eecec 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -28,11 +28,11 @@ except ImportError:
     pass
 else:
     # This invokes our own customized version of ez_setup.py to make sure that setuptools
-    # v0.6c11dev (which is our own toothpick of setuptools) is used to build.  Note that we can
+    # v0.6c12dev (which is our own toothpick of setuptools) is used to build.  Note that we can
     # use any version of setuptools >= 0.6c6 to *run* -- see _auto_deps.py for run-time
     # dependencies (a.k.a. "install_requires") -- this is only for build-time dependencies
     # (a.k.a. "setup_requires").
-    use_setuptools(download_delay=0, min_version="0.6c11dev")
+    use_setuptools(download_delay=0, min_version="0.6c12dev")
 
 from setuptools import find_packages, setup
 from setuptools.command import sdist