Skip to content

Commit 9f63cbd

Browse files
AlejandroFernandezLucespyansys-ci-botgerma89
authored
fix: Allow jupyter_backend manual selection (#3838)
* fix: Allow jupyter_backend manual selection * chore: adding changelog file 3838.fixed.md [dependabot-skip] * fix: Temp install visualizer from branch * fix: Branch dep * fix: Use viz ver 0.9.0 --------- Co-authored-by: pyansys-ci-bot <[email protected]> Co-authored-by: German <[email protected]>
1 parent 27c6e96 commit 9f63cbd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

doc/changelog.d/3838.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix: Allow jupyter_backend manual selection

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ graphics = [
5757
]
5858

5959
all = [
60-
"ansys-tools-visualization-interface>=0.2.6",
60+
"ansys-tools-visualization-interface>=0.9.0",
6161
"matplotlib>=3.0.0", # for colormaps for pyvista
6262
"jupyterlab>=3",
6363
"ipywidgets",

src/ansys/mapdl/core/plotting/visualizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ def show(
853853

854854
else:
855855
if not return_plotter:
856-
self._backend.show()
856+
self._backend.show(**kwargs)
857857

858858
if return_plotter:
859859
return self

0 commit comments

Comments
 (0)