From: philipp Date: Wed, 1 Apr 2015 21:25:36 +0000 (+0000) Subject: Limit webob version to versions below 1.4 to prevent a bug in pylons 1.0.1. X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/commitdiff_plain/35c4c4915a4988f27a2e881c4d2f122bef0110e8 Limit webob version to versions below 1.4 to prevent a bug in pylons 1.0.1. git-svn-id: http://www.winterrodeln.org/svn/wradmin/trunk@2178 7aebc617-e5e2-0310-91dc-80fb5f6d2477 --- diff --git a/setup.py b/setup.py index dc1498b..05148e6 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,8 @@ setup( # "matplotlib>=0.9", # "mapnik", "Babel>=0.9", - "wrpylib>=0.3.0" + "wrpylib>=0.3.0", + "webob<1.4" # https://github.com/Pylons/pylons/issues/20 ], setup_requires=["PasteScript>=1.6.3"], packages=find_packages(exclude=['ez_setup']),