diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2012-09-23 14:36:36 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2012-09-23 14:36:36 -0700 |
commit | 96d8eafc476e265c4f954846283f9f5ff0e1c6bb (patch) | |
tree | 911e82b1cab2f440e79a1a26e84eb7ec980d27f9 | |
parent | 18612b7caa2311a7eab1cfbe2824f93c1de305cd (diff) |
Crypto 2.4 doesn't play well with setup.py/setuptools
(cherry picked from commit 12cf1674fcd8bf216ec2f12f4ddd111eb8db3514)
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ import sys try: from setuptools import setup kw = { - 'install_requires': 'pycrypto >= 2.1', + 'install_requires': 'pycrypto >= 2.1, < 2.4', } except ImportError: from distutils.core import setup |