From: Zooko O'Whielacronx Date: Thu, 20 Nov 2008 16:15:03 +0000 (-0700) Subject: setup: we require setuptools > 0.6a9 in order to parse requirements that have a dot... X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=68f38f241b64176e3ff97072e4f82eaf6412432e;p=tahoe-lafs%2Ftahoe-lafs.git setup: we require setuptools > 0.6a9 in order to parse requirements that have a dot in them such as "zope.interface" In the near future we might start actually relying on setuptools's pkg_resources's "require()" function to make modules importable, so we can't just skip zope.interface. --- diff --git a/_auto_deps.py b/_auto_deps.py index 1d0afdf1..34d56a15 100644 --- a/_auto_deps.py +++ b/_auto_deps.py @@ -1,7 +1,5 @@ install_requires=[ - # we require 0.6c8 to build, but can handle older versions - # to run - "setuptools >= 0.6a9", + "setuptools >= 0.6c8", # pycryptopp < 0.5 had a bug which, using a Microsoft # compiler, or using some versions of g++ while linking