-
Notifications
You must be signed in to change notification settings - Fork 451
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error while building Tribler documentation: module 'mistune' has no attribute 'BlockGrammar' #6624
Labels
Comments
kozlovsky
added a commit
to kozlovsky/tribler
that referenced
this issue
Dec 6, 2021
… doc/requirements.txt
kozlovsky
added a commit
that referenced
this issue
Dec 6, 2021
Fixes #6624: specify the exact version of `mistune` library in doc/requirements.txt
Thank you, Installing |
mayani
added a commit
to pegasus-isi/pegasus
that referenced
this issue
Feb 3, 2022
arteymix
added a commit
to PavlidisLab/bioluigi
that referenced
this issue
Feb 3, 2022
See Tribler/tribler#6624 for details.
magnesj
added a commit
to OPM/ResInsight-UserDocumentation
that referenced
this issue
Feb 7, 2022
magnesj
added a commit
to OPM/ResInsight-UserDocumentation
that referenced
this issue
Apr 5, 2022
priesgo
added a commit
to TRON-Bioinformatics/covigator
that referenced
this issue
Sep 10, 2022
this did not work for me on Intel Mac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In our Jenkins PR-triggered job for building the documentation, we have the following line:
python -m sphinx -T -E -b html -d _build/doctrees -D language=en . _build/html
which currently produces the error:
The reason for the problem is the following bug of
sphinxcontrib-openapi
:sphinx-contrib/openapi#121
And the reason for the bug is incompletely specified dependencies of
sphinxcontrib-openapi
.To see the dependency graph, I installed the
pipdeptree
library:With it, I can see the following dependency tree:
The
m2r
library requires themistune
library but does not specify the required version.As it turns out, the API in version
2.0.0
of mistune has changed, and for them2r
library to work correctly, we need to use a previous version ofmistune
(0.8.4). With themistune
version 0.8.4, the documentation build works correctly.To fix the problem, we need to specify the exact version of
mistune
in our doc requirements.The text was updated successfully, but these errors were encountered: