File tree Expand file tree Collapse file tree 7 files changed +8
-9
lines changed
src/ansys/mapdl/core/plotting Expand file tree Collapse file tree 7 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 11ansys-dpf-core == 0.10.1
2- ansys-tools-visualization-interface == 0.5.0
2+ ansys-tools-visualization-interface == 0.8.3
33autopep8 == 2.3.1
44matplotlib == 3.9.2
55pandas == 2.2.3
Original file line number Diff line number Diff line change 11ansys-dpf-core == 0.10.1
22ansys-mapdl-reader == 0.54.2
33ansys-sphinx-theme == 0.16.6
4- ansys-tools-visualization-interface == 0.5.0
4+ ansys-tools-visualization-interface == 0.8.3
55grpcio == 1.68.0
66imageio-ffmpeg == 0.5.1
77imageio == 2.36.0
Original file line number Diff line number Diff line change 11ansys-dpf-core == 0.10.1
22ansys-mapdl-reader == 0.54.2
33ansys-sphinx-theme == 1.2.2
4- ansys-tools-visualization-interface == 0.5.0
4+ ansys-tools-visualization-interface == 0.8.3
55autopep8 == 2.3.1
66grpcio == 1.68.0
77imageio-ffmpeg == 0.5.1
Original file line number Diff line number Diff line change 2020
2121env :
2222 PROJECT_NAME : ' PyMAPDL'
23- MAIN_PYTHON_VERSION : ' 3.11 '
23+ MAIN_PYTHON_VERSION : ' 3.12 '
2424 PACKAGE_NAME : ' ansys-mapdl-core'
2525 PACKAGE_NAMESPACE : ' ansys.mapdl.core'
2626 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 = [
7373 " scipy==1.15.2" ,
7474 " vtk==9.3.1" ,
7575]
76+
7677doc = [
7778 " ansys-dpf-core==0.10.1" ,
7879 " 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):
225225 list[pv.PolyData]
226226 Plotted meshes.
227227 """
228- datasets = []
229- for actor in self .scene .actors .values ():
230- if hasattr (actor , "mapper" ):
231- datasets .append (actor .mapper .dataset )
232-
233228 return [
234229 actor .mapper .dataset
235230 for actor in self .scene .actors .values ()
236231 if hasattr (actor , "mapper" )
232+ and hasattr (actor .mapper , "dataset" )
233+ and actor .mapper .dataset
237234 ]
238235
239236 def add_labels (
You can’t perform that action at this time.
0 commit comments