From 8f52ffa62eb9ca452d72b7a28dc866974a0f155f Mon Sep 17 00:00:00 2001 From: Alex Fernandez <21alex295@gmail.com> Date: Thu, 9 Nov 2023 18:06:12 +0100 Subject: [PATCH] fix: Revert dependencies due to broken plotters (#843) --- src/ansys/geometry/core/plotting/plotter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ansys/geometry/core/plotting/plotter.py b/src/ansys/geometry/core/plotting/plotter.py index 6500bc77b8..cd6c69a011 100644 --- a/src/ansys/geometry/core/plotting/plotter.py +++ b/src/ansys/geometry/core/plotting/plotter.py @@ -509,7 +509,8 @@ def show( # Conditionally set the Jupyter backend as not all users will be within # a notebook environment to avoid a pyvista warning if self.scene.notebook and jupyter_backend is None: - jupyter_backend = "panel" + # TODO revert this once the dynamic plotters in documentation are back. + jupyter_backend = "static" # Enabling anti-aliasing by default on scene self.scene.enable_anti_aliasing("ssaa")