forked from orbit-oss/flask
require Werkzeug 2.2
This commit is contained in:
parent
900e11850a
commit
add53e190c
2 changed files with 2 additions and 1 deletions
|
|
@ -15,6 +15,7 @@ Unreleased
|
|||
- The ``RequestContext.g`` property returning ``AppContext.g`` is
|
||||
removed.
|
||||
|
||||
- Update Werkzeug dependency to >= 2.2.
|
||||
- The app and request contexts are managed using Python context vars
|
||||
directly rather than Werkzeug's ``LocalStack``. This should result
|
||||
in better performance and memory use. :pr:`4682`
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -4,7 +4,7 @@ from setuptools import setup
|
|||
setup(
|
||||
name="Flask",
|
||||
install_requires=[
|
||||
"Werkzeug >= 2.2.0a1",
|
||||
"Werkzeug >= 2.2.0",
|
||||
"Jinja2 >= 3.0",
|
||||
"itsdangerous >= 2.0",
|
||||
"click >= 8.0",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue