mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-19 11:16:24 +00:00
setup: raise minimum required version of pycryptopp, even on non-x86/amd64 platforms, to v0.5.14 of pycryptopp
This commit is contained in:
parent
cb8ab03ede
commit
b0bfa5c37b
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user