]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: require pycryptopp >= v0.5
authorZooko O'Whielacronx <zooko@zooko.com>
Tue, 6 May 2008 18:17:47 +0000 (11:17 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Tue, 6 May 2008 18:17:47 +0000 (11:17 -0700)
_auto_deps.py

index dcff02fc4f76f4f6336d863926fe6ab0337a1edf..c9ac073479ef28b6c85f0c9e83fede0a2472f7d8 100644 (file)
@@ -1,7 +1,12 @@
 install_requires=["zfec >= 1.1.0",
                   "foolscap >= 0.2.5",
                   "simplejson >= 1.4",
-                  "pycryptopp >= 0.2.8",
+
+                  # pycryptopp < 0.5 had a bug which, using a Microsoft
+                  # compiler, or using some versions of g++ while linking
+                  # against certain older versions of Crypto++, would cause
+                  # incorrect AES results.
+                  "pycryptopp >= 0.5",
                   "nevow >= 0.6.0",
                   "zope.interface",
                   "twisted >= 2.4.0",