From 2e0bc1aff302608680bea62c424b4b2cc8e9af84 Mon Sep 17 00:00:00 2001 From: Asher Foa <1268088+asherf@users.noreply.github.com> Date: Wed, 11 Mar 2020 12:45:01 -0700 Subject: [PATCH] Loosen jinja2 requirement. This allows repos consuming moto to use the latest jinaj2 2.11.x patched version (currently 2.11.1) w/o breaking moto's python 2 support. See https://github.com/spulec/moto/pull/2776 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9bb7cf52..19376119 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def get_version(): install_requires = [ "setuptools==44.0.0", - "Jinja2==2.11.0", + "Jinja2<3.0.0,>=2.10.1", "boto>=2.36.0", "boto3>=1.9.201", "botocore>=1.12.201",