From 5929ecbc2ef55a14ae2fa5f142280d72748856cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 28 Nov 2022 09:20:28 +0100 Subject: [PATCH] fix: TemplateSyntaxError with old jinja2 The following syntax is only supported in jinja2>=2.10: {% set jwt_rsa_key | rsa_import_key %}{{ JWT_RSA_PRIVATE_KEY }}{% endset %} Thus, we bump the minimal working version of jinja2 in the base requirements. See discussion: https://discuss.openedx.org/t/error-while-tutor-local-quickstart/8796 --- requirements/base.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.in b/requirements/base.in index ad4c114..8f2c811 100644 --- a/requirements/base.in +++ b/requirements/base.in @@ -2,6 +2,6 @@ appdirs click>=8.0 mypy pycryptodome -jinja2 +jinja2>=2.10 kubernetes pyyaml>=4.2b1