Skip to content

Commit 7915d3b

Browse files
fix: Review comments
1 parent c6c68d3 commit 7915d3b

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,8 @@ jobs:
6969
docs-build:
7070
name: Documentation Build
7171
runs-on: ubuntu-latest
72-
# needs: [docs-style]
72+
needs: [docs-style]
7373
steps:
74-
- name: Install system dependencies
75-
run: sudo apt install -qq libglu1-mesa-dev libx11-xcb-dev '^libxcb*'
7674
- name: Setup headless display
7775
uses: pyvista/setup-headless-display-action@v2
7876

@@ -104,7 +102,7 @@ jobs:
104102

105103
testing:
106104
name: Run Unit Tests
107-
# needs: [ smoke-tests ]
105+
needs: [ smoke-tests ]
108106
runs-on: ubuntu-latest
109107
steps:
110108
- name: Install system dependencies

examples/00-basic-pyvista-examples/qt_backend.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444
# =======================
4545
# .. code-block:: python
4646
#
47-
# cube = pv.Cube()
48-
# pv_backend = PyVistaBackend(use_qt=True)
49-
# pl = Plotter(backend=pv_backend)
50-
# pl.plot(cube)
51-
# pl.show()
52-
#
47+
cube = pv.Cube()
48+
pv_backend = PyVistaBackend(use_qt=True)
49+
pl = Plotter(backend=pv_backend)
50+
pl.plot(cube)
51+
pl.show()
52+
5353

5454

5555
#####################

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ doc = [
4949
"jupytext==1.16.4",
5050
"nbsphinx==0.9.5",
5151
"numpydoc==1.8.0",
52-
"pyside6==6.7.3",
53-
"pyvistaqt==0.11.1,<1",
5452
"sphinx==8.1.3",
5553
"sphinx-autoapi==3.3.3",
5654
"sphinx-copybutton==0.5.2",

src/ansys/tools/visualization_interface/backends/pyvista/pyvista.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,4 +603,4 @@ def plot(self, plottable_object: Any, name_filter: str = None, **plotting_option
603603
def close(self):
604604
"""Close the plotter for PyVistaQT."""
605605
if self._use_qt:
606-
self.pv_interface.scene.close()
606+
self.pv_interface.scene.close()

0 commit comments

Comments
 (0)