Skip to content

Commit

Permalink
update min dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Oct 31, 2024
1 parent 39e7208 commit 8f37c82
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Version 3.1.0
Unreleased

- Drop support for Python 3.8. :pr:`5623`
- Update minimum dependency versions to latest feature releases.
Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.8. :pr:`5624`
- Provide a configuration option to control automatic option
responses. :pr:`5496`
- ``Flask.open_resource``/``open_instance_resource`` and
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ classifiers = [
]
requires-python = ">=3.9"
dependencies = [
"Werkzeug>=3.0.0",
"Werkzeug>=3.1",
"Jinja2>=3.1.2",
"itsdangerous>=2.1.2",
"itsdangerous>=2.2",
"click>=8.1.3",
"blinker>=1.6.2",
"importlib-metadata>=3.6.0; python_version < '3.10'",
"blinker>=1.8",
"importlib-metadata>=3.6; python_version < '3.10'",
]

[project.urls]
Expand Down
6 changes: 3 additions & 3 deletions requirements/tests-min.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
werkzeug==3.0.0
werkzeug==3.1.0
jinja2==3.1.2
markupsafe==2.1.1
itsdangerous==2.1.2
itsdangerous==2.2.0
click==8.1.3
blinker==1.6.2
blinker==1.8.0
6 changes: 3 additions & 3 deletions requirements/tests-min.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
#
# pip-compile tests-min.in
#
blinker==1.6.2
blinker==1.8.0
# via -r tests-min.in
click==8.1.3
# via -r tests-min.in
itsdangerous==2.1.2
itsdangerous==2.2.0
# via -r tests-min.in
jinja2==3.1.2
# via -r tests-min.in
Expand All @@ -17,5 +17,5 @@ markupsafe==2.1.1
# -r tests-min.in
# jinja2
# werkzeug
werkzeug==3.0.0
werkzeug==3.1.0
# via -r tests-min.in
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
envlist =
py3{13,12,11,10,9}
pypy310
py312-min
py313-min
py39-dev
style
typing
Expand Down

0 comments on commit 8f37c82

Please sign in to comment.