From de01dfb70206f8dbb55724b7abfc515ead3ca283 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 15 Apr 2019 17:01:44 +0200 Subject: [PATCH] Bump Jinja2 requirements The 2.10.1 version was released 2019-04-06 and contains important security fix. This change allows flask users to avoid implicit insecure dependency. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 851a14e0..0bc1c90b 100755 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ setup( python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', install_requires=[ 'Werkzeug>=0.14', - 'Jinja2>=2.10', + 'Jinja2>=2.10.1', 'itsdangerous>=0.24', 'click>=5.1', ],