From 68f38f241b64176e3ff97072e4f82eaf6412432e Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Thu, 20 Nov 2008 09:15:03 -0700 Subject: [PATCH] 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. --- _auto_deps.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 -- 2.45.2