From 371b3dab3c7660282e370d77516f4d651ddb7f0e Mon Sep 17 00:00:00 2001 From: zooko Date: Wed, 17 Jun 2009 23:35:21 +0530 Subject: [PATCH] setup: raise setuptools version requirement to 0.6c9 on all platforms (0.6c6 had that problem with multiple overlapping dependencies on pyutil, on Ubuntu) Ignore-this: 44f27ecb2c593fb1589c43ed5de77bca darcs-hash:612efe9e3db38629223324c28537bc24a262ff4e --- zfec/setup.py | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/zfec/setup.py b/zfec/setup.py index 938ca2a..4142af2 100755 --- a/zfec/setup.py +++ b/zfec/setup.py @@ -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 -- 2.37.2