diff options
author | Jim Campbell <jcampbell@gnome.org> | 2015-04-19 12:26:11 -0500 |
---|---|---|
committer | Jim Campbell <jcampbell@gnome.org> | 2015-04-19 12:26:11 -0500 |
commit | 3252f738368db9345db65f056800597c34a15d62 (patch) | |
tree | 461161fbb9712935b15222dbda4b6a6bcae9249a /setup.py | |
parent | 44db13fa840e23c30d03709815d38b9c44d4df18 (diff) | |
download | mediagoblin-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ install_requires = [ 'unidecode', 'jsonschema', 'PasteDeploy', - 'requests', + 'requests>=2.6.0', 'pyld', # This is optional: # 'translitcodec', |