Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,15 @@ def __init__(self, **kwargs) -> None:
module="jedi",
)

# Due to PEP0765, this is fixed in ipython 9.X, but we bundle
# earlier versions to support Python 3.10
warnings.filterwarnings(
"ignore",
category=SyntaxWarning,
message=r"'return' in a 'finally' block",
module="ipykernel",
)

# Patch holoviews to use our custom notebook extension.
set_holoviews_extension(self.ui_service)
handle_bokeh_output(self.session_mode)
Expand Down
Loading