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
This commit is contained in:
parent
0305d31cb8
commit
6b98e96771
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -4,7 +4,7 @@ from setuptools import setup
|
||||||
setup(
|
setup(
|
||||||
name="Flask",
|
name="Flask",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Werkzeug >= 2.0",
|
"Werkzeug >= 2.0, <2.1",
|
||||||
"Jinja2 >= 3.0",
|
"Jinja2 >= 3.0",
|
||||||
"itsdangerous >= 2.0",
|
"itsdangerous >= 2.0",
|
||||||
"click >= 7.1.2",
|
"click >= 7.1.2",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue