diff options
author | Justin Mayer <entroP@gmail.com> | 2020-04-12 16:03:13 +0200 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2020-04-12 17:02:06 +0200 |
commit | 6cef4ead88ba2510544fc3e57b1c1061fd4a9c6e (patch) | |
tree | 390c67580b6a799e1838dc04504c6243396d5df3 | |
parent | e2bbfcb0880988bdfc5985f059cbf6b7a1c85a1c (diff) | |
download | pelican-6cef4ead88ba2510544fc3e57b1c1061fd4a9c6e.tar.gz |
Increase Jinja version minimum to 2.11+
This newer version slightly changes rendered output; upgrading our
dependency means our functional test output will match it more
consistently.
-rw-r--r-- | pyproject.toml | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index b09ab021..f7876002 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.5" feedgenerator = "^1.9" -jinja2 = "~2.10.1" +jinja2 = "~2.11" pygments = "~2.6.1" pytz = "^2019.1" blinker = "^1.4" @@ -9,7 +9,7 @@ from setuptools import setup version = "4.2.0" -requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.7', 'pygments', +requires = ['feedgenerator >= 1.9', 'jinja2 >= 2.11', 'pygments', 'docutils>=0.15', 'pytz >= 0a', 'blinker', 'unidecode', 'python-dateutil'] |