Merge remote-tracking branch 'origin/3.0.x'

This commit is contained in:
David Lord 2021-05-11 14:23:25 -07:00
commit 1c4066a4fa
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
2 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,8 @@ Version 3.0.1
Unreleased
- Update MarkupSafe dependency to >= 2.0.
Version 3.0.0
-------------

View File

@ -3,6 +3,6 @@ from setuptools import setup
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
setup(
name="Jinja2",
install_requires=["MarkupSafe>=2.0.0rc2"],
install_requires=["MarkupSafe>=2.0"],
extras_require={"i18n": ["Babel>=2.7"]},
)