This is an automated email from the ASF dual-hosted git repository.
jevans pushed a commit to branch v1.x
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/v1.x by this push:
new 4d399c2e5c [1.x] Fix 'module 'jinja2' has no attribute
'contextfilter'' (#20990)
4d399c2e5c is described below
commit 4d399c2e5c24e63f01c84b86a42be45fa1ed5f8b
Author: bartekkuncer <[email protected]>
AuthorDate: Fri Apr 8 05:41:23 2022 +0200
[1.x] Fix 'module 'jinja2' has no attribute 'contextfilter'' (#20990)
* Fix 'module 'jinja2' has no attribute 'contextfilter''
* Update Makefile
* Update Makefile
---
julia/docs/Makefile | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/julia/docs/Makefile b/julia/docs/Makefile
index 337a28615e..829e87d166 100644
--- a/julia/docs/Makefile
+++ b/julia/docs/Makefile
@@ -20,8 +20,9 @@ all:
'using Pkg; \
Pkg.develop(PackageSpec(name="MXNet", path = joinpath(pwd(), "..")))'
julia --color=yes --project=./ ./make.jl
- pip install --user Markdown==3.1 \
- mkdocs==1.0.4 \
+ pip install --user "jinja2>=2.7.1,<3.1.0" \
+ Markdown==3.1 \
+ mkdocs==1.0.4 \
mkdocs-material==4.6.0 \
pygments==2.5.2 \
pymdown-extensions==6.2.1 \