aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index cd52bbfe..10cac2df 100644
--- a/setup.py
+++ b/setup.py
@@ -56,7 +56,9 @@ if PY2:
# PyPI version (1.4.2) does not have proper Python 3 support
pyversion_install_requires.append('ExifRead')
pyversion_install_requires.append('PasteScript')
- pyversion_install_requires.append('Paste')
+ # 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')
else:
pyversion_install_requires.append('gunicorn')