# HG changeset patch # User Mads Kiilerich # Date 2015-08-05 12:29:41 # Node ID f6fcb21db7b3480595c7824fd3db70ddc314df8c # Parent 88a5fb51d83744befbdb2aaeae63d8c5e735749a pylons: support Pylons 1.0.2 Pylons 1.0.2 requires webob>=1.1.1 and Pylons 1.0.0 seemed to have problems with later versions so stick the minimum version for now. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -36,9 +36,9 @@ is_windows = __platform__ in ['Windows'] requirements = [ "waitress==0.8.8", - "webob==1.0.8", + "webob>=1.0.8,<=1.1.1", "webtest==1.4.3", - "Pylons==1.0.0", + "Pylons>=1.0.0,<=1.0.2", "Beaker==1.6.4", "WebHelpers==1.3", "formencode>=1.2.4,<=1.2.6",