28 lines
637 B
Diff
28 lines
637 B
Diff
From 3ef00c66939e0b6d2d95756f73c1d2fe716ddf40 Mon Sep 17 00:00:00 2001
|
|
From: Ralph Bean <rbean@redhat.com>
|
|
Date: Tue, 3 May 2016 10:56:53 -0400
|
|
Subject: [PATCH] Pin urllib3 to 1.16
|
|
|
|
---
|
|
setup.py | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 3a39052..662e0ef 100755
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -44,7 +44,9 @@ packages = [
|
|
'requests.packages.urllib3.packages.ssl_match_hostname',
|
|
]
|
|
|
|
-requires = []
|
|
+requires = [
|
|
+ 'urllib3==1.16',
|
|
+]
|
|
test_requirements = ['pytest>=2.8.0', 'pytest-httpbin==0.0.7', 'pytest-cov']
|
|
|
|
with open('requests/__init__.py', 'r') as fd:
|
|
--
|
|
2.5.5
|
|
|