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.
This commit is contained in:
Boris Bobrov 2016-01-07 21:12:01 +03:00
parent ab53aea8f4
commit 6db9c5258c

View File

@ -58,7 +58,7 @@ if PY2:
pyversion_install_requires.append('PasteScript') pyversion_install_requires.append('PasteScript')
# Paste 2.0 is breaking wsgi, see: # Paste 2.0 is breaking wsgi, see:
# https://bitbucket.org/ianb/paste/issue/4/wsgi-environ-totally-borked # 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: else:
pyversion_install_requires.append('gunicorn') pyversion_install_requires.append('gunicorn')