aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJim Campbell <jcampbell@gnome.org>2015-04-19 12:26:11 -0500
committerJim Campbell <jcampbell@gnome.org>2015-04-19 12:26:11 -0500
commit3252f738368db9345db65f056800597c34a15d62 (patch)
tree461161fbb9712935b15222dbda4b6a6bcae9249a /setup.py
parent44db13fa840e23c30d03709815d38b9c44d4df18 (diff)
downloadmediagoblin-3252f738368db9345db65f056800597c34a15d62.tar.lz
mediagoblin-3252f738368db9345db65f056800597c34a15d62.tar.xz
mediagoblin-3252f738368db9345db65f056800597c34a15d62.zip
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. `
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
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',