summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2020-04-12 16:03:13 +0200
committerJustin Mayer <entroP@gmail.com>2020-04-12 17:02:06 +0200
commit6cef4ead88ba2510544fc3e57b1c1061fd4a9c6e (patch)
tree390c67580b6a799e1838dc04504c6243396d5df3
parente2bbfcb0880988bdfc5985f059cbf6b7a1c85a1c (diff)
downloadpelican-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.toml2
-rwxr-xr-xsetup.py2
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"
diff --git a/setup.py b/setup.py
index dc1cc527..571b1c5e 100755
--- a/setup.py
+++ b/setup.py
@@ -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']