aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt6
-rw-r--r--setup.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b6c6668..f9d9157 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,7 +1,7 @@
-Revision 0.0.1b
----------------
+Revision 0.0.2
+--------------
-- Require pyasn1 >= 0.0.13a
+- Require pyasn1 >= 0.1.1
- Fixes towards Py3K compatibility
+ use either of existing urllib module
+ adopt to the new bytes type
diff --git a/setup.py b/setup.py
index 01626e4..e0aceec 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ def howto_install_setuptools():
try:
from setuptools import setup
params = {
- 'install_requires': [ 'pyasn1>=0.0.14' ],
+ 'install_requires': [ 'pyasn1>=0.1.1' ],
'zip_safe': True
}
except ImportError:
@@ -23,7 +23,7 @@ except ImportError:
sys.exit(1)
from distutils.core import setup
params = {
- 'requires': [ 'pyasn1(>=0.0.14)' ]
+ 'requires': [ 'pyasn1(>=0.1.1)' ]
}
params.update( {