aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelie <elie>2014-06-17 15:29:52 +0000
committerelie <elie>2014-06-17 15:29:52 +0000
commit8897ae8acb28be18599f941c70f1827a99651f8e (patch)
tree6a192ff52002e6c9d25a271315e917c02eb0b935
parentc6668966874a8d6385f74e7f4b4da5be1573d9fc (diff)
downloadpyasn1-modules-8897ae8acb28be18599f941c70f1827a99651f8e.tar.gz
require pyasn1 0.1.8+
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index b7530ca..504037a 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ def howto_install_setuptools():
try:
from setuptools import setup
params = {
- 'install_requires': [ 'pyasn1>=0.1.4' ],
+ 'install_requires': [ 'pyasn1>=0.1.8' ],
'zip_safe': True
}
except ImportError:
@@ -67,7 +67,7 @@ except ImportError:
from distutils.core import setup
params = {}
if sys.version_info[:2] > (2, 4):
- params['requires'] = [ 'pyasn1(>=0.1.4)' ]
+ params['requires'] = [ 'pyasn1(>=0.1.8)' ]
doclines = [ x.strip() for x in __doc__.split('\n') if x ]