ansys-pyensight-core 0.9.15__py3-none-any.whl → 0.9.17__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ansys-pyensight-core might be problematic. Click here for more details.

@@ -402,7 +402,7 @@ class DockerLauncher(Launcher):
402
402
  cmd += f" --ensight-ws-port {ws_port}"
403
403
  cmd += f" --ensight-session-directory {self._session_directory}"
404
404
  cmd += f" --ensight-secret-key {self._secret_key}"
405
- cmd += "--main-show-gui 'False'"
405
+ cmd += " --main-show-gui 'False'"
406
406
  logging.debug(f"Starting WebUI: {cmd}\n")
407
407
  ret = self._enshell.start_other(cmd, extra_env=container_env_str)
408
408
  if ret[0] != 0: # pragma: no cover
@@ -274,8 +274,23 @@ class Omniverse:
274
274
  if platform.system() == "Windows":
275
275
  self._interpreter += ".bat"
276
276
  return
277
+ # Check if the python interpreter is kit itself
278
+ is_omni = False
279
+ try:
280
+ import omni # noqa: F401
281
+
282
+ is_omni = "kit" in os.path.basename(sys.executable)
283
+ except ModuleNotFoundError:
284
+ pass
277
285
  # Using the python interpreter running this code
278
286
  self._interpreter = sys.executable
287
+ if is_omni:
288
+ kit_path = os.path.dirname(sys.executable)
289
+ self._interpreter = os.path.join(kit_path, "python")
290
+ if platform.system() == "Windows":
291
+ self._interpreter += ".bat"
292
+ else:
293
+ self._interpreter += ".sh"
279
294
 
280
295
  # in the future, these will be part of the pyensight wheel
281
296
  # dependencies, but for now we include this check.
@@ -68,6 +68,7 @@ class DVS:
68
68
  if monitor_new_timesteps:
69
69
  cmd += f'ensight.solution_time.monitor_for_new_steps("{monitor_new_timesteps}")\n'
70
70
  cmd += 'ensight.part.elt_representation("3D_feature_2D_full")\n'
71
+ cmd += 'ensight.data.format("DVS")\n'
71
72
  cmd += 'err = ensight.data.replace("notexisting.dvs")\n'
72
73
  return cmd
73
74
 
@@ -96,6 +97,7 @@ class DVS:
96
97
  cmd += f"{indent}dvsfile.write(f'SERVER_SECURITY_SECRET={secret_key}\\n')\n"
97
98
  cmd += f'ensight.solution_time.monitor_for_new_steps("{monitor_new_timesteps}")\n'
98
99
  cmd += 'ensight.part.elt_representation("3D_feature_2D_full")\n'
100
+ cmd += 'ensight.data.format("DVS")\n'
99
101
  cmd += "ensight.data.replace(path)\n"
100
102
  return cmd
101
103
 
@@ -154,6 +156,7 @@ class DVS:
154
156
  raise RuntimeError(f"Couldn't write allocated DVS port to {filename}")
155
157
  ensight.part.elt_representation("3D_feature_2D_full")
156
158
  ensight.solution_time.monitor_for_new_steps(f"{monitor_new_timesteps}")
159
+ ensight.data.format("DVS")
157
160
  ensight.data.replace(path)
158
161
  else:
159
162
 
@@ -180,6 +183,7 @@ class DVS:
180
183
  ensight.objs.core.CURRENTCASE[0].client_command_callback(dvs_callback)
181
184
  ensight.solution_time.monitor_for_new_steps(f"{monitor_new_timesteps}")
182
185
  ensight.part.elt_representation("3D_feature_2D_full")
186
+ ensight.data.format("DVS")
183
187
  ensight.data.replace("notexisting.dvs")
184
188
 
185
189
  def launch_live_dvs(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ansys-pyensight-core
3
- Version: 0.9.15
3
+ Version: 0.9.17
4
4
  Summary: A python wrapper for Ansys EnSight
5
5
  Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
6
  Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
@@ -26,7 +26,6 @@ Requires-Dist: pypng>=0.0.20
26
26
  Requires-Dist: psutil>=5.9.2
27
27
  Requires-Dist: usd-core==24.8
28
28
  Requires-Dist: pygltflib>=1.16.2
29
- Requires-Dist: grpcio<=1.67.1
30
29
  Requires-Dist: build>=0.10.0 ; extra == "dev"
31
30
  Requires-Dist: bump2version>=1.0.1 ; extra == "dev"
32
31
  Requires-Dist: ipdb>=0.9.4 ; extra == "dev"
@@ -55,7 +54,7 @@ Requires-Dist: urllib3==2.3.0 ; extra == "tests"
55
54
  Requires-Dist: requests>=2.28.2 ; extra == "tests"
56
55
  Requires-Dist: docker>=6.1.0 ; extra == "tests"
57
56
  Requires-Dist: pytest-xdist==3.6.1 ; extra == "tests"
58
- Requires-Dist: pytest-rerunfailures~=14.0 ; extra == "tests"
57
+ Requires-Dist: pytest-rerunfailures>=14,<16 ; extra == "tests"
59
58
  Project-URL: Changelog, https://github.com/ansys/pyensight/blob/main/CHANGELOG.rst
60
59
  Project-URL: Documentation, https://ensight.docs.pyansys.com/
61
60
  Project-URL: Homepage, https://github.com/ansys/pyensight
@@ -1,7 +1,7 @@
1
1
  ansys/pyensight/core/__init__.py,sha256=BCfpDonS2OZRM2O6wjcyOYhLSgdy9hMQRl6G-_9Bvkg,845
2
2
  ansys/pyensight/core/common.py,sha256=f28uGaJhpSmOE1i6MwzqFH0_jKpIByglM2plB2K4Hdk,7574
3
3
  ansys/pyensight/core/deep_pixel_view.html,sha256=6u4mGOuzJiPze8N8pIKJsEGPv5y6-zb38m9IfrarATE,3510
4
- ansys/pyensight/core/dockerlauncher.py,sha256=Qu3zbldCOdSfcXmvw6l3L3mocJs3ttc-Cc3S9BvTvhM,28414
4
+ ansys/pyensight/core/dockerlauncher.py,sha256=eAg50C1BjGzOkRKHgSPssz8_jiMwQOP1o-a7lUY-p_Q,28415
5
5
  ansys/pyensight/core/dvs.py,sha256=xL2LeJ9uja3mFBuU8vsE26O_NFgaR9uhDvxZKAHGGvg,31284
6
6
  ansys/pyensight/core/enscontext.py,sha256=GSKkjZt1QEPyHEQ59EEBgKGMik9vjCdR9coR4uX7fEw,12141
7
7
  ansys/pyensight/core/enshell_grpc.py,sha256=-OxSdFI_p3DmQnqh1jT_a_aSh_w-EUD2IaWGKxrnyjI,17122
@@ -20,18 +20,18 @@ ansys/pyensight/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
20
20
  ansys/pyensight/core/utils/adr.py,sha256=XslZhlwcrSGzOlnhzprOv3ju_ppxxsWBjCnQL5KiNms,3570
21
21
  ansys/pyensight/core/utils/dsg_server.py,sha256=ScNf7sb339kvEGIwIAlJpxzPvOGbUSnvNrCat9soFlw,46769
22
22
  ansys/pyensight/core/utils/export.py,sha256=UAJQcrElo3esQD0CWdxxjMQ8yE1vB4cdAhF33_uZfQw,22605
23
- ansys/pyensight/core/utils/omniverse.py,sha256=irghU1wcIvo_lHhZV2VxYKCSQkNWCF8njJjWfExiFgI,18455
23
+ ansys/pyensight/core/utils/omniverse.py,sha256=qeIA9WgHHsf-fylT5I3z7rBUZUlSEOR-fLTvqgCPqbQ,18996
24
24
  ansys/pyensight/core/utils/omniverse_cli.py,sha256=aVYu4HsSZBl7A9_xU3DfItNB-hpxCdMPXm_oMAOU_HQ,20261
25
25
  ansys/pyensight/core/utils/omniverse_dsg_server.py,sha256=JCklPQC4xqwnvB7zVdLW80RpB9DlKN3hgs_Sj4sPhFY,39995
26
26
  ansys/pyensight/core/utils/omniverse_glb_server.py,sha256=KSaLvGfyREu9bSTA3wgiAzf68s0KfQuWLwHbZ1Zf5vE,31824
27
27
  ansys/pyensight/core/utils/parts.py,sha256=222XFRCjLgH7hho-cK9JrGCg3-KlTf54KIgc7y50sTE,52173
28
28
  ansys/pyensight/core/utils/query.py,sha256=OXKDbf1sOTX0sUvtKcp64LhVl-BcrEsE43w8uMxLOYI,19828
29
- ansys/pyensight/core/utils/readers.py,sha256=cNNzrE5pjy4wpQKWAzIIJfJCSpY3HU43az02f5I3pVU,11968
29
+ ansys/pyensight/core/utils/readers.py,sha256=_IluAWz8mmoe5SM3hAewHIqlhtKMfEqrUJoQOlJ4U4I,12138
30
30
  ansys/pyensight/core/utils/support.py,sha256=QI3z9ex7zJxjFbkCPba9DWqWgPFIThORqr0nvRfVjuc,4089
31
31
  ansys/pyensight/core/utils/variables.py,sha256=ZUiJdDIeRcowrnLXaJQqGwA0RbrfXhc1s4o4v9A4PiY,95133
32
32
  ansys/pyensight/core/utils/views.py,sha256=ZKhJ6vMT7Rdd4bwJ0egMYTV7-D7Q7I19fF2_j_CMQ0o,12489
33
33
  ansys/pyensight/core/utils/resources/Materials/000_sky.exr,sha256=xAR1gFd2uxPZDnvgfegdhEhRaqKtZldQDiR_-1rHKO0,8819933
34
- ansys_pyensight_core-0.9.15.dist-info/licenses/LICENSE,sha256=K6LiJHOa9IbWFelXmXNRzFr3zG45SOGZIN7vdLdURGU,1097
35
- ansys_pyensight_core-0.9.15.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
36
- ansys_pyensight_core-0.9.15.dist-info/METADATA,sha256=yYzPp1LJfYzJ__WakywsVAAV-Kpa1ZJEJ5HlTHJoamI,12121
37
- ansys_pyensight_core-0.9.15.dist-info/RECORD,,
34
+ ansys_pyensight_core-0.9.17.dist-info/licenses/LICENSE,sha256=K6LiJHOa9IbWFelXmXNRzFr3zG45SOGZIN7vdLdURGU,1097
35
+ ansys_pyensight_core-0.9.17.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
36
+ ansys_pyensight_core-0.9.17.dist-info/METADATA,sha256=Lz8nMTa2aXFEXNKl-4zVDkIYyew-okTUTRkmDHpsHBo,12093
37
+ ansys_pyensight_core-0.9.17.dist-info/RECORD,,