From 7aec646a6d9ac2ae8aca04ccde6fa4bf55feee14 Mon Sep 17 00:00:00 2001 From: mbohlool Date: Wed, 26 Apr 2017 13:12:16 -0700 Subject: [PATCH] Exclude urllib3 version 1.21 from depedencies as it breaks our code --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index df3b07dc19..a43810b7b7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ certifi>=14.05.14 # MPL six>=1.9.0 # MIT python-dateutil>=2.5.3 # BSD setuptools>=21.0.0 # PSF/ZPL -urllib3>=1.19.1,<=1.20 # MIT +urllib3>=1.19.1,!=1.20 # MIT pyyaml>=3.12 # MIT oauth2client>=4.0.0 # Apache-2.0 ipaddress>=1.0.17 # PSF diff --git a/setup.py b/setup.py index 550b35852d..252cc81d51 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ "oauth2client", "setuptools", "six", - "urllib3 (>=1.19.1,<=1.20)", + "urllib3!=1.21", "python-dateutil", "pyyaml", "websocket-client",