From 6c69148203575112fff4246f243d8c663459fb78 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 24 Sep 2022 22:55:40 +0100 Subject: [PATCH] We depend on Werkzeug and a specific version too --- plugins/routemaster-prometheus/setup.py | 1 + plugins/routemaster-statsd/setup.py | 1 + setup.py | 1 + 3 files changed, 3 insertions(+) diff --git a/plugins/routemaster-prometheus/setup.py b/plugins/routemaster-prometheus/setup.py index 01790bf..a8f1f81 100644 --- a/plugins/routemaster-prometheus/setup.py +++ b/plugins/routemaster-prometheus/setup.py @@ -42,5 +42,6 @@ install_requires=( 'routemaster', 'prometheus_client>=0.4.2', + 'werkzeug>=2,<2.1', ), ) diff --git a/plugins/routemaster-statsd/setup.py b/plugins/routemaster-statsd/setup.py index 3367eab..260d798 100644 --- a/plugins/routemaster-statsd/setup.py +++ b/plugins/routemaster-statsd/setup.py @@ -40,5 +40,6 @@ install_requires=( 'routemaster', 'statsd_python', + 'werkzeug>=2,<2.1', ), ) diff --git a/setup.py b/setup.py index 5a3dd50..e6c129e 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ 'python-dateutil', 'alembic >=0.9.6', 'gunicorn >=19.7', + 'werkzeug>=2,<2.1', 'schedule', 'freezegun', 'requests',