mirror of https://github.com/pallets/flask.git
Bump Werkzeug 3.0.0
This commit is contained in:
parent
438edcdf01
commit
3252f2bc54
|
@ -9,6 +9,7 @@ Unreleased
|
|||
- Restructure the code such that the Flask (app) and Blueprint
|
||||
classes have Sans-IO bases. :pr:`5127`
|
||||
- Allow self as an argument to url_for. :pr:`5264`
|
||||
- Require Werkzeug >= 3.0.0.
|
||||
|
||||
|
||||
Version 2.3.3
|
||||
|
|
|
@ -20,7 +20,7 @@ classifiers = [
|
|||
]
|
||||
requires-python = ">=3.8"
|
||||
dependencies = [
|
||||
"Werkzeug>=2.3.7",
|
||||
"Werkzeug>=3.0.0",
|
||||
"Jinja2>=3.1.2",
|
||||
"itsdangerous>=2.1.2",
|
||||
"click>=8.1.3",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Werkzeug==2.3.7
|
||||
Werkzeug==3.0.0
|
||||
Jinja2==3.1.2
|
||||
MarkupSafe==2.1.1
|
||||
itsdangerous==2.1.2
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# SHA1:fe057f95a98251b053eec8fa27df0feb722c70e8
|
||||
# SHA1:fbb9fae044c2e7d895de9b3d7cbb40a11a822f04
|
||||
#
|
||||
# This file is autogenerated by pip-compile-multi
|
||||
# To update, run:
|
||||
|
@ -18,5 +18,5 @@ markupsafe==2.1.1
|
|||
# -r requirements/tests-pallets-min.in
|
||||
# jinja2
|
||||
# werkzeug
|
||||
werkzeug==2.3.7
|
||||
werkzeug==3.0.0
|
||||
# via -r requirements/tests-pallets-min.in
|
||||
|
|
Loading…
Reference in New Issue