Commit 4ea9051 1 parent dd2c3c2 commit 4ea9051 Copy full SHA for 4ea9051
File tree 7 files changed +8
-9
lines changed
src/ansys/mapdl/core/plotting
7 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
ansys-dpf-core == 0.10.1
2
- ansys-tools-visualization-interface == 0.5.0
2
+ ansys-tools-visualization-interface == 0.8.3
3
3
autopep8 == 2.3.1
4
4
matplotlib == 3.9.2
5
5
pandas == 2.2.3
Original file line number Diff line number Diff line change 1
1
ansys-dpf-core == 0.10.1
2
2
ansys-mapdl-reader == 0.54.2
3
3
ansys-sphinx-theme == 0.16.6
4
- ansys-tools-visualization-interface == 0.5.0
4
+ ansys-tools-visualization-interface == 0.8.3
5
5
grpcio == 1.68.0
6
6
imageio-ffmpeg == 0.5.1
7
7
imageio == 2.36.0
Original file line number Diff line number Diff line change 1
1
ansys-dpf-core == 0.10.1
2
2
ansys-mapdl-reader == 0.54.2
3
3
ansys-sphinx-theme == 1.2.2
4
- ansys-tools-visualization-interface == 0.5.0
4
+ ansys-tools-visualization-interface == 0.8.3
5
5
autopep8 == 2.3.1
6
6
grpcio == 1.68.0
7
7
imageio-ffmpeg == 0.5.1
Original file line number Diff line number Diff line change 20
20
21
21
env :
22
22
PROJECT_NAME : ' PyMAPDL'
23
- MAIN_PYTHON_VERSION : ' 3.11 '
23
+ MAIN_PYTHON_VERSION : ' 3.12 '
24
24
PACKAGE_NAME : ' ansys-mapdl-core'
25
25
PACKAGE_NAMESPACE : ' ansys.mapdl.core'
26
26
DOCUMENTATION_CNAME : ' mapdl.docs.pyansys.com'
Original file line number Diff line number Diff line change
1
+ ci: using python3.12 as main testing python version
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ tests = [
73
73
" scipy==1.15.2" ,
74
74
" vtk==9.3.1" ,
75
75
]
76
+
76
77
doc = [
77
78
" ansys-dpf-core==0.10.1" ,
78
79
" ansys-mapdl-reader==0.54.2" ,
Original file line number Diff line number Diff line change @@ -225,15 +225,12 @@ def get_meshes_from_plotter(self):
225
225
list[pv.PolyData]
226
226
Plotted meshes.
227
227
"""
228
- datasets = []
229
- for actor in self .scene .actors .values ():
230
- if hasattr (actor , "mapper" ):
231
- datasets .append (actor .mapper .dataset )
232
-
233
228
return [
234
229
actor .mapper .dataset
235
230
for actor in self .scene .actors .values ()
236
231
if hasattr (actor , "mapper" )
232
+ and hasattr (actor .mapper , "dataset" )
233
+ and actor .mapper .dataset
237
234
]
238
235
239
236
def add_labels (
You can’t perform that action at this time.
0 commit comments