diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2020-04-10 07:14:39 +1000 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2020-04-10 07:14:39 +1000 |
commit | 72047cbe687ac8f55c6f9afa5056b196e84ff355 (patch) | |
tree | dc6d946f38e2ef53bb26791d2f1db33a2e6c6abb /setup.py | |
parent | 15c45a820f915455c8a1a55d971031aa122d1674 (diff) | |
download | mediagoblin-72047cbe687ac8f55c6f9afa5056b196e84ff355.tar.lz mediagoblin-72047cbe687ac8f55c6f9afa5056b196e84ff355.tar.xz mediagoblin-72047cbe687ac8f55c6f9afa5056b196e84ff355.zip |
Require jinja2<3.0.0 due to use of f-strings.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -57,7 +57,9 @@ install_requires = [ 'pytest-xdist', 'werkzeug>=0.7,<1.0.0', 'celery>=3.0', - 'jinja2', + # Jinja2 3.0.0 uses f-strings (Python 3.7 and above) but `pip install` on + # Debian 9 doesn't seem to respect Jinja2's 'python_requires=">=3.6"' line. + 'jinja2<3.0.0', 'Babel>=1.3', 'WebTest>=2.0.18', 'ConfigObj', |