Skip to content

Commit d05bd1e

Browse files
committed
fix: review suggestions
1 parent 8e0657a commit d05bd1e

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

doc/source/getting_started/install.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ To install PyDPF-Core with its optional plotting functionalities, run this comma
2323
2424
pip install ansys-dpf-core[graphics]
2525
26+
.. warning::
27+
28+
``pip install ansys-dpf-core[plotting]`` is equivalent to the previous command, however, the "plotting" target
29+
only remains valid for legacy reasons and will soon be deprecated. Users are encouraged to use the "graphics"
30+
target instead.
31+
2632
For more information about PyDPF-Core plotting capabilities, see :ref:`user_guide_plotting`.
2733

2834
To use PyDPF-Core with Ansys 2022 R1, install the latest compatible version

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,17 @@ graphics = [
4949
"imageio-ffmpeg",
5050
]
5151

52+
plotting = [
53+
# 2D chart plotting
54+
"matplotlib>=3.2",
55+
# 3D plotting
56+
"pyvista>=0.32.0",
57+
"vtk!=9.4.0",
58+
# Animations
59+
"imageio < 2.28.1",
60+
"imageio-ffmpeg",
61+
]
62+
5263
[project.urls]
5364
Homepage = "https://dpf.docs.pyansys.com/"
5465
Documentation = "https://dpf.docs.pyansys.com/"

0 commit comments

Comments
 (0)