From 3252f738368db9345db65f056800597c34a15d62 Mon Sep 17 00:00:00 2001 From: Jim Campbell Date: Sun, 19 Apr 2015 12:26:11 -0500 Subject: [PATCH] setup.py: Updated version requirement for 'requests'. Fixes 5313. If we don't speficify a version for 'requests', Debian installs v2.4.x, but there is an issue with urllib3 and pyopenssl in versions prior to 2.6.0. This issue caused our installs to fail. Updating our requirement to 2.6.0 or greater resolves this issue and allows our installation processes to proceed normally. ` --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ecbc99ef..cd52bbfe 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ install_requires = [ 'unidecode', 'jsonschema', 'PasteDeploy', - 'requests', + 'requests>=2.6.0', 'pyld', # This is optional: # 'translitcodec',