Skip to content

chore: graphics target #820

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
May 19, 2025
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
install_extras: graphics
# Upload the wheel artifact for only one of the OS as it is OS-agnostic
wheel: ${{ (matrix.python-version == env.MAIN_PYTHON_VERSION) && (matrix.os == 'windows-latest') }}
wheelhouse: true
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
install_extras: graphics
wheel: false
standalone_suffix: ${{ matrix.ANSYS_VERSION == '241' && '.sp01' || '' }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
install_extras: graphics
# Upload the wheel artifact for only one of the OS as it is OS-agnostic
wheel: ${{ (matrix.python-version == env.MAIN_PYTHON_VERSION) && (matrix.os == 'windows-latest') }}
wheelhouse: true
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
install_extras: graphics
wheel: false
extra-pip-args: ${{ env.extra }}

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
PACKAGE_NAME: ${{env.PACKAGE_NAME}}
MODULE: ${{env.MODULE}}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
install_extras: graphics
wheel: false
wheelhouse: false
standalone_suffix: ${{ inputs.standalone_suffix }}
Expand Down Expand Up @@ -130,7 +130,8 @@ jobs:
export TEMP=${{ runner.temp }}
make clean
echo "Making html doc..."
make html $DEBUG_HTML >> log.txt 2>&1
make html
# make html $DEBUG_HTML >> log.txt 2>&1

- name: "Check for success"
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
PACKAGE_NAME: ${{ env.PACKAGE_NAME }}
MODULE: ${{ env.MODULE }}
dpf-standalone-TOKEN: ${{secrets.DPF_PIPELINE}}
install_extras: plotting
install_extras: graphics
wheelhouse: false
wheel: false
standalone_suffix: ${{ inputs.standalone_suffix }}
Expand Down
2 changes: 1 addition & 1 deletion doc/source/getting_started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To install PyDPF-Post with its optional plotting functionalities, use this comma

.. code:: bash

pip install ansys-dpf-post[plotting]
pip install ansys-dpf-post[graphics]

For more information about PyDPF-Post plotting capabilities, see :ref:`user_guide_plotting`.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ name = "ansys.dpf.post"
Source = "https://github.com/ansys/pydpf-post"

[project.optional-dependencies]
plotting = [
graphics = [
"pyvista>=0.24.0",
]

Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pytest-sphinx==0.6.3
sphinx-notfound-page==1.1.0
sphinx-copybutton==0.5.0
sphinx-gallery==0.19.0
ansys_sphinx_theme==1.3.1
ansys_sphinx_theme==1.4.1
sphinx-autodoc-typehints==3.0.1
pyvista==0.44.2
vtk==9.3.1
Expand Down
Loading