Skip to content

Commit

Permalink
Merge pull request #623 from lochsh/relax-jinja2-req
Browse files Browse the repository at this point in the history
Relax version spec for jinja2
  • Loading branch information
stanislaw authored Feb 24, 2022
2 parents a29ce6a + 152b60d commit 96959b8
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
37 changes: 36 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ keywords = [
python = "^3.6.2"
dataclasses = { version = "^0.7", python=">=3.6,<3.7" }
textx = "2.3.0"
jinja2 = "^2.11.2"
jinja2 = ">=2.11.2,<4.0"
docutils = "^0.16"
XlsxWriter = "^1.3.7"
python-datauri = "^0.2.9"
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jinja2==2.11.3; (python_version >= "2.7" and python_full_version < "3.0.0") or (
lazy-object-proxy==1.7.1; python_version >= "3.6" and python_version < "4.0"
lit==0.11.0.post1
lxml==4.8.0; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
markupsafe==2.0.1; python_full_version >= "3.6.2" and python_version >= "3.6" and python_full_version < "4.0.0"
markupsafe==2.0.1; python_full_version >= "3.6.2" and python_version >= "3.6" and python_full_version < "4.0.0" and (python_version >= "3.5" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.5")
mccabe==0.6.1; python_version >= "3.6" and python_version < "4.0" and (python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0")
mypy-extensions==0.4.3; python_version >= "3.5" and python_full_version >= "3.6.2"
mypy==0.910; python_version >= "3.5"
Expand Down Expand Up @@ -69,4 +69,4 @@ urllib3==1.26.8; python_version >= "3.5" and python_full_version < "3.0.0" or py
webencodings==0.5.1; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
wrapt==1.13.3; python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "4.0" or python_version >= "3.6" and python_version < "4.0" and python_full_version >= "3.5.0"
xlsxwriter==1.4.5
zipp==3.6.0; python_version < "3.8" and python_version >= "3.6"
zipp==3.6.0; python_version < "3.8" and python_version >= "3.6" and (python_version >= "3.6" and python_full_version < "3.0.0" and python_version < "3.8" or python_full_version >= "3.5.0" and python_version < "3.8" and python_version >= "3.6")

0 comments on commit 96959b8

Please sign in to comment.