bump minimum versions of dependencies (#2097)

This commit is contained in:
David Lord 2025-05-28 11:20:08 -07:00 committed by GitHub
commit dfe82ade3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -6,6 +6,8 @@ Version 3.2.0
Unreleased
- Drop support for Python 3.7, 3.8, and 3.9.
- Update minimum MarkupSafe version to >= 3.0.
- Update minimum Babel version to >= 2.17.
- Use modern packaging metadata with ``pyproject.toml`` instead of ``setup.cfg``.
:pr:`1793`
- Use ``flit_core`` instead of ``setuptools`` as build backend.

View File

@ -16,9 +16,7 @@ classifiers = [
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"MarkupSafe>=2.0"
]
dependencies = ["MarkupSafe>=3.0"]
dynamic = ["version"]
[project.urls]
@ -29,7 +27,7 @@ Source = "https://github.com/pallets/jinja/"
Chat = "https://discord.gg/pallets"
[project.optional-dependencies]
i18n = ["Babel>=2.7"]
i18n = ["Babel>=2.17"]
[dependency-groups]
dev = [

4
uv.lock generated
View File

@ -358,8 +358,8 @@ typing = [
[package.metadata]
requires-dist = [
{ name = "babel", marker = "extra == 'i18n'", specifier = ">=2.7" },
{ name = "markupsafe", specifier = ">=2.0" },
{ name = "babel", marker = "extra == 'i18n'", specifier = ">=2.17" },
{ name = "markupsafe", specifier = ">=3.0" },
]
provides-extras = ["i18n"]