pyasn1 dependency updated

pull/45/head
elie 2011-12-21 17:04:27 +00:00
parent be97ba2a29
commit 8938ce8c0e
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ It's very easy to install it, just type (as root on Linux):
try:
from setuptools import setup
params = {
'install_requires': [ 'pyasn1>=0.0.14', 'pycrypto>=2.3' ],
'install_requires': [ 'pyasn1>=0.1.2', 'pycrypto>=2.3' ],
'zip_safe': True
}
except ImportError:
@ -22,7 +22,7 @@ except ImportError:
sys.exit(1)
from distutils.core import setup
params = {
'requires': [ 'pyasn1(>=0.0.14)', 'pycrypto(>=2.3)' ]
'requires': [ 'pyasn1(>=0.1.2)', 'pycrypto(>=2.3)' ]
}
params.update( {