-
Notifications
You must be signed in to change notification settings - Fork 15
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
Notebook progressbar fix #239
Conversation
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.
Looks good to me! Perhaps it is good to add a comment to the pyproject.toml to briefly mention why we pinned this library (and/or link to #233)? In the case that we want to move to a newer version in the future, we can check whether this issue is sorted.
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.
Suggested to add link to issue, such that the linked issue in nbconvert
can be found back later as well.
@@ -70,6 +70,7 @@ doc = [ | |||
examples = [ | |||
"jupyterlab", | |||
"cartopy", | |||
"nbconvert==7.13.1", # Pin as of (02-2024); 7.14 onwards causes issues with the progressbar in example notebooks |
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.
"nbconvert==7.13.1", # Pin as of (02-2024); 7.14 onwards causes issues with the progressbar in example notebooks | |
"nbconvert==7.13.1", # Pin as of (02-2024); 7.14 onwards causes issues with the progressbar in example notebooks, see https://github.com/Deltares/hydromt_wflow/issues/233 |
Issue addressed
Fixes #233
Explanation
Pin the nbconvert package.
Checklist
main
Additional Notes (optional)
No