Skip to content

Commit

Permalink
Prevent jinja2 from upgrading to 3.1 to avoid breaking nbconvert
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 25, 2022
1 parent 5a8c552 commit 2186f96
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
18 changes: 9 additions & 9 deletions poetry.lock

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

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ jsonfield = ">=1.4.0"
django-yamlfield = {git = "https://github.com/bakatrouble/django-yamlfield.git", rev = "c92d0373d12a02d1e52fb09b44010f156111d7ea"}
# For easy content formatting:
markdown = "^2.6.3"

# For rendering macros in content:
jinja2 = "^3.0.3"
# <3.1 for https://github.com/jupyter/nbconvert/issues/1736
# Relate itself seems to be OK with 3.1?
jinja2 = "^3.0.3,<3.1"

# For math/symbolic questions
pymbolic = "*"
sympy = "*"
Expand Down

0 comments on commit 2186f96

Please sign in to comment.