]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: raise minimum required version of pycryptopp, even on non-x86/amd64 platforms...
authorZooko O'Whielacronx <zooko@zooko.com>
Wed, 22 Sep 2010 07:08:08 +0000 (00:08 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Wed, 22 Sep 2010 07:08:08 +0000 (00:08 -0700)
_auto_deps.py

index 619da5dc47acbcea2a2bca3f1eca5636235e71a0..d571145071e4c46c4fd8a726a062392f9409b40c 100644 (file)
@@ -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"