From 2e97e9f141b41fde0600e657919c3dc2a532cb95 Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Fri, 22 Dec 2017 15:05:14 +0100 Subject: [PATCH] require pysnmp 4.4.3 for Blumenthal key gen flavor support --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index b410b94..a683f4f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pysnmp>=4.4.1 +pysnmp>=4.4.3 diff --git a/setup.py b/setup.py index 7406445..d875031 100644 --- a/setup.py +++ b/setup.py @@ -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 } @@ -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]