From f308680f9fef92b256df016890a332dbeaa1fb15 Mon Sep 17 00:00:00 2001 From: John Bowen Date: Mon, 10 Feb 2020 22:24:11 +0000 Subject: [PATCH] setup.py: install_requires[requests] changed from an exact version to minimum required version, i.e. requests >= 2.7.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 12e8aab..2e1364c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ include_package_data=True, url='https://github.com/thunderpush/python-thunderclient', install_requires=[ - 'requests==2.7.0', + 'requests>=2.7.0', ], classifiers=[ "License :: OSI Approved :: BSD License",