Skip to content

Commit

Permalink
pin to any pyasn1 patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
etingof committed Sep 7, 2017
1 parent 3f7babc commit deac879
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyasn1>=0.3.4
pyasn1~=0.3.4
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def howto_install_setuptools():
from setuptools import setup, Command

params = {
'install_requires': ['pyasn1>=0.3.4'],
'install_requires': ['pyasn1~=0.3.4'],
'zip_safe': True
}

Expand All @@ -81,7 +81,7 @@ def howto_install_setuptools():
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',
Expand Down

0 comments on commit deac879

Please sign in to comment.