Update min dependency to Jinja 2.10.1.

Jinja 2.10.1 patched a security valnerability. See the release notes here:
https://github.com/pallets/jinja/blob/master/CHANGES.rst#version-2101

Closes #1780.
This commit is contained in:
Waylan Limberg
2019-12-20 13:38:53 -05:00
parent 8662df01de
commit 2491c1433a
3 changed files with 4 additions and 2 deletions

View File

@@ -72,6 +72,8 @@ do, adding `--strict`, `--theme`, `--theme-dir`, and `--site-dir`.
### Other Changes and Additions to Version 1.1
* Updated minimum dependancy to Jinja 2.10.1 to address security
concerns (#1780).
* Add support for Python 3.8.
* Drop support for Python 3.4.
* Drop support for Python 2.7. MkDocs is PY3 only now (#1926).

View File

@@ -1,5 +1,5 @@
click==3.3
Jinja2==2.7.1
Jinja2==2.10.1
livereload==2.5.1
Markdown==2.5
PyYAML==3.13

View File

@@ -55,7 +55,7 @@ setup(
include_package_data=True,
install_requires=[
'click>=3.3',
'Jinja2>=2.7.1',
'Jinja2>=2.10.1',
'livereload>=2.5.1',
'lunr[languages]>=0.5.2',
'Markdown>=2.3.1',