From 6d71967cc4ba180b1a5a1be82a9e2bec338f3f51 Mon Sep 17 00:00:00 2001 From: matyasz Date: Thu, 13 May 2021 11:03:50 -0700 Subject: [PATCH] Pinning Jinja2 version in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0edd3984c..d410c5800 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def prepend_find_packages(*roots): description = 'core libraries for the allensdk.', install_requires = required, tests_require=test_required, - setup_requires=['setuptools', 'sphinx', 'numpydoc', 'pytest-runner'], + setup_requires=['setuptools', 'jinja2>=2.7.3,<2.12.0', 'sphinx', 'numpydoc', 'pytest-runner'], url='https://github.com/AllenInstitute/AllenSDK/tree/v%s' % (allensdk.__version__), download_url = 'https://github.com/AllenInstitute/AllenSDK/tarball/v%s' % (allensdk.__version__), keywords = ['neuroscience', 'bioinformatics', 'scientific' ],