From 78ba90d54826c2ba11626e9a89b142964db25e2f Mon Sep 17 00:00:00 2001 From: Olivier Dony <odo@odoo.com> Date: Wed, 10 Apr 2019 17:45:04 +0000 Subject: [PATCH] [FIX] requirements: bump up jinja2 reqs Recommended by GitHub's repository alerts. We normally stick as close as possible to the version we depend on in the official DEB packages. This in turn depends on the version of Debian stable at the time of release - for 10.0 that would be Debian 8 (jessie) and thus Jinja 2.7.3 (albeit with security backports). However Jinja2 before 2.10.1 suffers from a few issues that could lead to crashes of Odoo processes. It seems it's worth an exception to our rule for pip users, similarly to previous bump up at d2605bccdba1838db5700a6ae0dd12ca9f9b20c7. closes odoo/odoo#32602 Signed-off-by: Christophe Simonis <chs@odoo.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index eaf01b182b0b..180e8ac8d6b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ feedparser==5.2.1 gevent==1.1.2 greenlet==0.4.10 jcconv==0.2.3 -Jinja2==2.8.1 +Jinja2==2.10.1 lxml==3.5.0 Mako==1.0.4 MarkupSafe==0.23 -- GitLab