From cd30a24da65c8e3334f52343ccd96cf15dee907f Mon Sep 17 00:00:00 2001 From: Tom Misilo <1446856+misilot@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:19:31 -0500 Subject: [PATCH] Limit Werkzeug to the 2.x version Werkzeug 3.x does not work with Flask 2.x --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7e5b21ff..a5d2ecf2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "Werkzeug>=2.3.7", + "Werkzeug>=2.3.7,<3.0", "Jinja2>=3.1.2", "itsdangerous>=2.1.2", "click>=8.1.3",