From 9cd14aebb21840e4c65d90542d40e29cd50d5999 Mon Sep 17 00:00:00 2001 From: Stavros Ntentos <133706+stdedos@users.noreply.github.com> Date: Tue, 28 May 2019 13:44:30 +0300 Subject: Explicit cherrypy requirements for the example application Unless you are pulling always from https://pypi.org/simple, it is possible that you might get an older version of `cherrypy`. Make sure we request a "relatively recent" version. `pip install 'CherryPy>14.0.2,<15'` gave `CherryPy-14.2.0` which works --- example/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/requirements.txt b/example/requirements.txt index 588621c9..a0fbaaf9 100644 --- a/example/requirements.txt +++ b/example/requirements.txt @@ -1,2 +1,2 @@ mako -cherrypy \ No newline at end of file +cherrypy>14.0.2 -- cgit v1.2.1