# HG changeset patch # User Goffi # Date 1515153709 -3600 # Node ID 3bf61858a12379311f4179b813f3a649c443c47f # Parent d821c112e656ae8202cb201aa5e57e8a88834d04 misc (setup.py): set minimum jinja2 version to 2.9 diff -r d821c112e656 -r 3bf61858a123 setup.py --- a/setup.py Wed Jan 03 01:11:26 2018 +0100 +++ b/setup.py Fri Jan 05 13:01:49 2018 +0100 @@ -302,6 +302,6 @@ for root, dirs, files in os.walk(C.THEMES_DIR)], scripts=[], zip_safe=False, - install_requires=['sat', 'twisted', 'txJSON-RPC==0.3.1', 'zope.interface', 'pyopenssl', 'jinja2', 'shortuuid', 'autobahn'], + install_requires=['sat', 'twisted', 'txJSON-RPC==0.3.1', 'zope.interface', 'pyopenssl', 'jinja2>=2.9', 'shortuuid', 'autobahn'], cmdclass={'install': CustomInstall}, )