Changed werkzeug version

This helps to fix some problems mentioned in issue #49
This commit is contained in:
Julio Poveda 2020-05-13 14:34:10 -05:00 committed by GitHub
parent 86320da2a4
commit af26ace271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,12 +18,12 @@ SETUP_LICENSE = "Fraunhofer FOKUS proprietary"
# requirements
SETUP_REQUIRES = [
"urllib3", "gevent (>=1.0)", "iso8601 (>=0.1.5)", "werkzeug (>=0.9)",
"urllib3", "gevent (>=1.0)", "iso8601 (>=0.1.5)", "werkzeug (==0.16)",
"blist", "simplejson", "ujson", "python_socketio", "gevent_websocket",
"flask", "enum34", "geventhttpclient"
]
SETUP_INSTALL_REQUIRES = [
"urllib3", "gevent >= 1.0", "iso8601 >= 0.1.5", "werkzeug >= 0.9",
"urllib3", "gevent >= 1.0", "iso8601 >= 0.1.5", "werkzeug == 0.16",
"blist", "simplejson", "ujson", "python_socketio", "gevent_websocket",
"flask", "enum34", "geventhttpclient"
]