From bb9ce131a9b7726836e0929f177c31a152db620d Mon Sep 17 00:00:00 2001 From: elie Date: Thu, 10 Mar 2011 13:52:53 +0000 Subject: require pyasn1 >= 0.0.13a --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3fd40dd..506ca2b 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ It's very easy to install it, just type (as root on Linux): try: from setuptools import setup params = { - 'install_requires': [ 'pyasn1' ], + 'install_requires': [ 'pyasn1>=0.0.13a' ], 'zip_safe': True } except ImportError: @@ -24,7 +24,7 @@ except ImportError: from distutils.core import setup if sys.version_info > (2, 2): params = { - 'requires': [ 'pyasn1' ] + 'requires': [ 'pyasn1>=0.0.13a' ] } else: params = {} -- cgit v1.2.3