Merge branch '2.10.x'

This commit is contained in:
David Lord 2019-10-04 11:59:18 -07:00
commit 544c2e9501
No known key found for this signature in database
GPG Key ID: 7A1C87E3F5BC42A8
2 changed files with 10 additions and 1 deletions

View File

@ -24,6 +24,15 @@ Unreleased
- Fix a bug causing deadlocks in ``LRUCache.setdefault``. :pr:`1000`
Version 2.10.3
--------------
Released 2019-10-24
- Fix a typo in Babel entry point in ``setup.py`` that was preventing
installation.
Version 2.10.2
--------------

View File

@ -50,5 +50,5 @@ setup(
include_package_data=True,
install_requires=["MarkupSafe>=0.23"],
extras_require={"i18n": ["Babel>=0.8"]},
entry_points={"babel.extractors": ["jinja2 = jinja2.ext:bable_extract[i18n]"]},
entry_points={"babel.extractors": ["jinja2 = jinja2.ext:babel_extract[i18n]"]},
)