From 798788e7414d51f01ba4f76fb8e075f09a7a589d Mon Sep 17 00:00:00 2001 From: Glen Smith Date: Sun, 20 Aug 2017 15:34:09 +0200 Subject: [PATCH] bump max compatible version of urllib3 to <1.23 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 55ef6398..aa424776 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ long_description = f.read().strip() f.close() install_requires = [ - 'urllib3<1.22,>=1.21.1', + 'urllib3<1.23,>=1.21.1', ] tests_require = [ 'requests>=2.0.0, <3.0.0',