Skip to content

Commit

Permalink
require pysnmp 4.4.3 for Blumenthal key gen flavor support
Browse files Browse the repository at this point in the history
  • Loading branch information
etingof committed Dec 22, 2017
1 parent d4bb26e commit 2e97e9f
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 @@
pysnmp>=4.4.1
pysnmp>=4.4.3
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def howto_install_setuptools():
from setuptools import setup

params = {
'install_requires': ['pysnmp>=4.4.1'],
'install_requires': ['pysnmp>=4.4.3'],
'zip_safe': True
}

Expand All @@ -74,7 +74,7 @@ def howto_install_setuptools():
params = {}

if sys.version_info[:2] > (2, 4):
params['requires'] = ['pysnmp(>=4.4.1)']
params['requires'] = ['pysnmp(>=4.4.3)']

doclines = [x.strip() for x in (__doc__ or '').split('\n') if x]

Expand Down

0 comments on commit 2e97e9f

Please sign in to comment.