_auto_deps.py: change pycrypto version requirement to avoid https://bugs.launchpad.net/pycrypto/+bug/620253

This commit is contained in:
david-sarah 2010-08-29 16:00:38 -07:00
parent f026927f86
commit 57b96c5e2f
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ install_requires=[
"pycryptopp >= 0.5.15",
# Needed for SFTP. pyasn1 is needed by twisted.conch in Twisted >= 9.0.
"pycrypto >= 2.0.1",
# pycrypto 2.2 doesn't work due to https://bugs.launchpad.net/pycrypto/+bug/620253
"pycrypto == 2.0.1, == 2.1, >= 2.3",
"pyasn1 >= 0.0.8a",
# Will be needed to test web apps, but not yet. See #1001.