-
Notifications
You must be signed in to change notification settings - Fork 4
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
fix: failing docs #728
fix: failing docs #728
Conversation
markdown_extensions: | ||
- pymdownx.highlight | ||
- pymdownx.superfences | ||
- admonition | ||
- toc: | ||
permalink: true | ||
- pymdownx.emoji: | ||
emoji_index: !!python/name:materialx.emoji.twemoji | ||
emoji_generator: !!python/name:materialx.emoji.to_svg | ||
emoji_index: !!python/name:material.extensions.emoji.twemoji |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because of a deprication warning
@@ -41,18 +41,15 @@ plugins: | |||
selection: | |||
inherited_members: false | |||
|
|||
custom_templates: templates |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
template directory does not exist
- autorefs | ||
- table-reader | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
table-reader gives error when it comes before the macros plugins
@@ -22,11 +22,11 @@ theme: | |||
- navigation.top | |||
plugins: | |||
- search | |||
- mkdocs-jupyter |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mkdocs-jupyter gives an error of
[ModuleNotFoundError: No module named 'notebook.services' error](https://github.com/Deltares/HYDROLIB-core/pull/728/commits/04c398b3a121d5f7fec2e2fb1854e6763e625be5)
Hey @priscavdsluis @veenstrajelmer can you check this merge? Thanks |
Quality Gate passedIssues Measures |
Fix Documentation build (fix #727 )
docs
, anddocs_release
workflows are failing since version 0.5.2.mkdocs-jupyter
dependency as it was the reason of the workflow failure.template
directory that was specified in themkdocs.yml
and does not exist in thedocs
directory which was also a reason why the docs build was not passing.I added comments on the places where the changes are made.
failing tests locally in
Winodws
Exception
on all theshutil.rmtree
that tries to delete previuos test files as sometimes it fails because ofPermissionError
, the deletion does not affect tests themselves.Dev
mkdocs
to a separate dependency groupdocs
so that in thedocs
and thedocs_release
CI workflows we install this group of dependencies only and not everything.