From: Boris Bobrov Date: Thu, 7 Jan 2016 18:12:01 +0000 (+0300) Subject: Uncap Paste X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6db9c5258cc668ed0c301eb0d94d9c410069530c;p=mediagoblin.git Uncap Paste Paste was capped to 1.9.9 because 2.0 broke us. Now Paste 2.0.x was released and it doesn't break us any more. Closes bug 5317. --- diff --git a/setup.py b/setup.py index 05fe8fcc..e8c4b034 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ if PY2: pyversion_install_requires.append('PasteScript') # Paste 2.0 is breaking wsgi, see: # https://bitbucket.org/ianb/paste/issue/4/wsgi-environ-totally-borked - pyversion_install_requires.append('Paste<=1.9.9') + pyversion_install_requires.append('Paste') else: pyversion_install_requires.append('gunicorn')