From 6b98e96771e7f333ceb643b084e01fe809ff4b6e Mon Sep 17 00:00:00 2001 From: farooq-bboxx <93902458+farooq-bboxx@users.noreply.github.com> Date: Tue, 29 Mar 2022 18:43:32 +0500 Subject: [PATCH] Fix werkzeug updating and causing an issue with EnvironBuilder EnvironBuilder no longer accepts `as_tuple` in 2.1.0 but since we have `>= 2.0` here, it updates without us noticing it and builds fail suddenly --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f908a469..4b0e072c 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup( name="Flask", install_requires=[ - "Werkzeug >= 2.0", + "Werkzeug >= 2.0, <2.1", "Jinja2 >= 3.0", "itsdangerous >= 2.0", "click >= 7.1.2",