projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb8ab03
)
setup: raise minimum required version of pycryptopp, even on non-x86/amd64 platforms...
author
Zooko O'Whielacronx
<zooko@zooko.com>
Wed, 22 Sep 2010 07:08:08 +0000
(
00:08
-0700)
committer
Zooko O'Whielacronx
<zooko@zooko.com>
Wed, 22 Sep 2010 07:08:08 +0000
(
00:08
-0700)
_auto_deps.py
patch
|
blob
|
history
diff --git
a/_auto_deps.py
b/_auto_deps.py
index 619da5dc47acbcea2a2bca3f1eca5636235e71a0..d571145071e4c46c4fd8a726a062392f9409b40c 100644
(file)
--- 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"