diff options
author | Stavros Ntentos <133706+stdedos@users.noreply.github.com> | 2019-05-28 13:44:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-28 13:44:30 +0300 |
commit | 9cd14aebb21840e4c65d90542d40e29cd50d5999 (patch) | |
tree | 79bcdc64898e3ce5647bb8a074ec6c84ccc8a5c6 | |
parent | 6acaf874537ea4772b3d2c4a3f760612cfc26055 (diff) | |
download | pysaml2-9cd14aebb21840e4c65d90542d40e29cd50d5999.tar.gz |
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
-rw-r--r-- | example/requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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 |