aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2017-09-07 11:43:52 +0200
committerIlya Etingof <etingof@gmail.com>2017-09-07 11:43:52 +0200
commitdeac879a7da7bc6dde97f44f7b8b0e706efb9c7a (patch)
tree7f7b001f60ad88b9baf6bc939228a8751cfb82cf
parent3f7babccaa67a9c802942e9a525996303f2d9c43 (diff)
downloadpyasn1-modules-deac879a7da7bc6dde97f44f7b8b0e706efb9c7a.tar.gz
pin to any pyasn1 patch release
-rw-r--r--requirements.txt2
-rw-r--r--setup.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/requirements.txt b/requirements.txt
index 4e834b4..d8671d3 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1 @@
-pyasn1>=0.3.4
+pyasn1~=0.3.4
diff --git a/setup.py b/setup.py
index 12b64da..de8cd26 100644
--- a/setup.py
+++ b/setup.py
@@ -67,7 +67,7 @@ try:
from setuptools import setup, Command
params = {
- 'install_requires': ['pyasn1>=0.3.4'],
+ 'install_requires': ['pyasn1~=0.3.4'],
'zip_safe': True
}
@@ -81,7 +81,7 @@ except ImportError:
params = {}
if sys.version_info[:2] > (2, 4):
- params['requires'] = ['pyasn1(>=0.3.4)']
+ params['requires'] = ['pyasn1(~=0.3.4)']
params.update(
{'name': 'pyasn1-modules',