Skip to content
Merged
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
9 changes: 7 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on:
env:
PACKAGE_NAME: ansys-dpf-core
MODULE: core

VTK_OSMESA_VERSION: "9.2.20230527.dev0"
jobs:
doc-style:
name: "Check doc style"
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
run: python -c "from ansys.dpf import core"

- name: "Setup headless display"
uses: pyvista/setup-headless-display-action@v1
uses: pyvista/setup-headless-display-action@v2

- name: "Setup Graphviz"
uses: ts-graphviz/setup-graphviz@v1
Expand All @@ -133,6 +133,11 @@ jobs:
- name: "Kill all servers"
uses: ansys/pydpf-actions/[email protected]

- name: "Ensure VTK compatibility"
run: |
python -m pip uninstall --yes vtk
python -m pip install --extra-index-url https://wheels.vtk.org vtk-osmesa==${{ env.VTK_OSMESA_VERSION }}

- name: "List installed packages"
shell: bash
run: pip list
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ imageio-ffmpeg==0.4.7
nbsphinx==0.9.3
pypandoc==1.13
pytest-sphinx==0.6.3
pyvista==0.36.1
pyvista==0.43.10
sphinx==7.1.0
sphinx-autobuild==2024.2.4
sphinx-copybutton==0.5.2
Expand Down