Skip to content

Commit

Permalink
Python 3.5 needs Jinja < 3.0 too
Browse files Browse the repository at this point in the history
  • Loading branch information
amol- committed Mar 23, 2020
1 parent 29101cd commit 38a0885
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,11 @@ def get_description(fname='README.rst'):
_extra_chameleon = ["chameleon"]
_extra_kajiki = ["kajiki >= 0.5.0"]

if sys.version_info[0] == 2:
if sys.version_info[0:2] < (3, 6):
_extra_jinja = ["jinja2 < 3.0"]
else:
_extra_jinja = ["jinja2"]



requires = [
'WebOb>=0.9.7',
'PasteDeploy',
Expand Down

0 comments on commit 38a0885

Please sign in to comment.