We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e35911 commit 0b0a03dCopy full SHA for 0b0a03d
setup.py
@@ -45,9 +45,10 @@ def read(fname):
45
],
46
install_requires=[
47
'pytest>=3.3.0',
48
- # Avoid Jinja 2.11 until https://github.com/pallets/jinja/issues/1138
49
- # is sorted.
50
- 'Jinja2 >=2.8, <2.11',
+ # 2.11.0 and .1 introduced an incompatible change in template output,
+ # which was fixed in 2.11.2 and later.
+ # https://github.com/pallets/jinja/issues/1138
51
+ 'Jinja2 >=2.8, !=2.11.0, !=2.11.1',
52
53
tests_require=[
54
'vunit_hdl>=4.0.8'
0 commit comments