set the upper bound version of Jinja2
Jinja2 has published 3.1.x version and it will throw ImportError, thus we have to set a upper bound version of Jinja2
This commit is contained in:
parent
d92b64aa27
commit
0f48de516c
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -51,7 +51,7 @@ setup(
|
||||||
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
|
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Werkzeug>=0.14',
|
'Werkzeug>=0.14',
|
||||||
'Jinja2>=2.4',
|
'Jinja2>=2.4, <3.1',
|
||||||
'itsdangerous>=0.21',
|
'itsdangerous>=0.21',
|
||||||
'click>=2.0',
|
'click>=2.0',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue