# HG changeset patch # User domruf # Date 2016-06-16 18:40:26 # Node ID 9ec73e01e5b1eb4e05038c80dd532575acc706f7 # Parent 3b1ef6d95d62d560af3272c8fc6fd5eb436fe0fb setup: support later waitress versions Latest version (0.9.0) seems to work and has a nice-to-have fix for coverage.py ( https://github.com/Pylons/waitress/issues/107 ). diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ is_windows = __platform__ in ['Windows'] requirements = [ "alembic>=0.8.0,<0.9", - "waitress==0.8.8", + "waitress>=0.8.8,<1.0", "webob>=1.0.8,<=1.1.1", "Pylons>=1.0.0,<=1.0.2", "Beaker==1.6.4",