From 866e6c5035a8ae07ef16bc646749a1448e282ed7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Thu, 6 Mar 2014 16:13:42 +0100 Subject: [PATCH] Changing dependencies to urllib3 1.8 The main reason is that it provides fix for the Nagle algorithm --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b6a246b6..260b1e5f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ long_description = f.read().strip() f.close() install_requires = [ - 'urllib3>=1.5, <2.0', + 'urllib3>=1.8, <2.0', ] tests_require = [ 'requests>=1.0.0, <3.0.0',