Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions doc/changelog.d/1063.miscellaneous.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Maint: bump visualization tool version
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ graphics = [
"ansys-tools-visualization-interface>=0.4.7,<1",
]
tests = [
"ansys-tools-visualization-interface==0.9.2",
"ansys-tools-visualization-interface==0.10.0",
"pytest==8.4.1",
"pytest-cov==6.2.1",
"pytest-pyvista==0.1.9",
Expand All @@ -43,7 +43,7 @@ tests = [
]
doc = [
"ansys-sphinx-theme[autoapi]==1.5.2",
"ansys-tools-visualization-interface==0.9.2",
"ansys-tools-visualization-interface==0.10.0",
"jupyter-sphinx==0.5.3",
"numpydoc==1.8.0",
"sphinx==8.2.3",
Expand Down
7 changes: 4 additions & 3 deletions src/ansys/meshing/prime/graphics/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ def show(
screenshot: str = None,
name_filter: str = None,
scope: prime.ScopeDefinition = None,
**plotting_options,
plotting_options: dict = {},
**show_options: Dict[str, Any],
) -> None:
"""Show the plotted objects.

Expand All @@ -334,10 +335,10 @@ def show(
if plottable_object is not None:
self.plot(plottable_object, name_filter=name_filter, scope=scope, **plotting_options)
self._backend.show(
object=plottable_object,
plottable_object=plottable_object,
Comment on lines 337 to +338
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This bit is still required, issue raised in #1074

screenshot=screenshot,
name_filter=name_filter,
**plotting_options,
**show_options,
)


Expand Down
Loading