diff options
author | Javier Jardón <jjardon@gnome.org> | 2018-01-16 11:17:47 +0000 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2018-02-05 13:43:42 +0000 |
commit | 945054df3821b7b53183983625f87c2e46fb6dd3 (patch) | |
tree | 76cf859265d907fda07da6236d9abf842391028d /setup.py | |
parent | 1a678c13f11f9134455f7599b7481417425494fb (diff) | |
download | buildstream-945054df3821b7b53183983625f87c2e46fb6dd3.tar.gz |
setup.py: Require jinja >= 2.10
jinja2 2.10 import time has been divided by two compared to Jinja 2.9.6
Fixes #194
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ setup(name='BuildStream', 'pluginbase', 'Click', 'blessings', - 'jinja2', + 'jinja2 >= 2.10', ], entry_points=bst_install_entry_points, setup_requires=['pytest-runner', 'setuptools_scm'], |