From: Zooko O'Whielacronx Date: Wed, 22 Sep 2010 07:08:08 +0000 (-0700) Subject: setup: raise minimum required version of pycryptopp, even on non-x86/amd64 platforms... X-Git-Tag: allmydata-tahoe-1.8.0~5 X-Git-Url: https://git.rkrishnan.org/module-simplejson-index.html?a=commitdiff_plain;h=b0bfa5c37bf4c9276d39da9c50a208ab532470f6;p=tahoe-lafs%2Ftahoe-lafs.git setup: raise minimum required version of pycryptopp, even on non-x86/amd64 platforms, to v0.5.14 of pycryptopp --- diff --git a/_auto_deps.py b/_auto_deps.py index 619da5dc..d5711450 100644 --- a/_auto_deps.py +++ b/_auto_deps.py @@ -34,7 +34,10 @@ if platform.machine().lower() in ['i386', 'x86_64', 'amd64', '']: # or amd64 machine. install_requires.append("pycryptopp >= 0.5.20") else: - install_requires.append("pycryptopp >= 0.5") + # pycryptopp v0.5.13 had a new bundled version of Crypto++ + # (v5.6.0) and a new bundled version of setuptools (although that + # shouldn't make any different to users of pycryptopp). + install_requires.append("pycryptopp >= 0.5.14") # Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"