From 4550c64a841b73fef0462022b362fb7b43602d6d Mon Sep 17 00:00:00 2001 From: TRV Date: Thu, 5 Nov 2020 15:16:09 +0100 Subject: [PATCH] Increase range on requires for requests and simplejson libraries (#65) Thanks again guys. Will update here when this is pushed to pypi. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 569e7c9..2aee96f 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,8 @@ packages=['shippo', 'shippo.test', 'shippo.test.integration'], package_data={'shippo': ['../VERSION']}, install_requires=[ - 'requests == 2.21.0', - 'simplejson == 3.16.0', + 'requests >= 2.21.0, <= 2.24.0', + 'simplejson >= 3.16.0, <= 3.17.2', ], test_suite='shippo.test.all', tests_require=['unittest2', 'mock', 'vcrpy'],