Limit Werkzeug to the 2.x version

Werkzeug 3.x does not work with Flask 2.x
This commit is contained in:
Tom Misilo 2023-10-25 09:19:31 -05:00 committed by GitHub
parent a6007373b5
commit cd30a24da6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ classifiers = [
] ]
requires-python = ">=3.8" requires-python = ">=3.8"
dependencies = [ dependencies = [
"Werkzeug>=2.3.7", "Werkzeug>=2.3.7,<3.0",
"Jinja2>=3.1.2", "Jinja2>=3.1.2",
"itsdangerous>=2.1.2", "itsdangerous>=2.1.2",
"click>=8.1.3", "click>=8.1.3",