]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
setup: raise setuptools version requirement to 0.6c9 on all platforms (0.6c6 had...
authorzooko <zooko@zooko.com>
Wed, 17 Jun 2009 18:05:21 +0000 (23:35 +0530)
committerzooko <zooko@zooko.com>
Wed, 17 Jun 2009 18:05:21 +0000 (23:35 +0530)
Ignore-this: 44f27ecb2c593fb1589c43ed5de77bca

darcs-hash:612efe9e3db38629223324c28537bc24a262ff4e

zfec/setup.py

index 938ca2a9b9df70036df47dbd2d61a5911acb9c2d..4142af218409ed16f88f8e8f55378e6b7adc28a8 100755 (executable)
@@ -18,16 +18,12 @@ try:
 except ImportError:
     pass
 else:
-    if sys.platform.lower().startswith('win'):
-        # 0.6c7 on Windows had a problem with multiple overlapping dependencies
-        # on pyutil -- it would end up with the 'pyutil' key set in sys.modules
-        # but the actual code (and the temporary directory in the filesystem in
-        # which the code used to reside) gone, when it needed pyutil again
-        # later.
-        min_version='0.6c9'
-    else:
-        min_version='0.6c6'
-    use_setuptools(min_version=min_version, download_delay=0, to_dir=miscdeps)
+    # 0.6c7 on Windows and 0.6c6 on Ubuntu had a problem with multiple
+    # overlapping dependencies on pyutil -- it would end up with the 'pyutil'
+    # key set in sys.modules but the actual code (and the temporary directory
+    # in the filesystem in which the code used to reside) gone, when it needed
+    # pyutil again later.
+    use_setuptools(min_version='0.6c9', download_delay=0, to_dir=miscdeps)
 
 from setuptools import Extension, find_packages, setup