Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 1 addition & 2 deletions doc/source/calc_functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2388,11 +2388,10 @@ the *Sandia Verdict Library*.

**References**

For more information on individual metrics, see these references:
For more information on individual metrics, see this reference:

1. C. J. Stimpson, C. D. Ernst, P. Knupp, P. P. Pebay, & D.
Thompson, The Verdict Library Reference Manual, May 8, 2007.
2. The Verdict Library Reference Manual (https://public.kitware.com/Wiki/images/6/6b/VerdictManual-revA.pdf)



Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies = [
"Pillow>=9.3.0",
"pypng>=0.0.20",
"psutil>=5.9.2",
"usd-core==24.8; python_version < '3.13' and platform_machine != 'aarch64'",
"usd-core==25.8; platform_machine != 'aarch64'",
"pygltflib>=1.16.2",
"grpcio<1.68.0",
]
Expand Down Expand Up @@ -73,7 +73,7 @@ doc = [
"sphinxcontrib-openapi==0.8.4",
"coverage-badge==1.1.2",
"sphinxcontrib-video==0.2.1",
"usd-core>=24.8",
"usd-core>=25.8",
"pygltflib>=1.16.2",
]

Expand Down
4 changes: 2 additions & 2 deletions src/ansys/pyensight/core/utils/omniverse_dsg_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
try:
from pxr import Gf, Sdf, Usd, UsdGeom, UsdLux, UsdShade
except ModuleNotFoundError:
if sys.version_info.minor >= 13:
warnings.warn("USD Export not supported for Python >= 3.13")
if sys.version_info.minor >= 14:
warnings.warn("USD Export not supported for Python >= 3.14")
sys.exit(1)
is_linux_arm64 = platform.system() == "Linux" and platform.machine() == "aarch64"
if is_linux_arm64:
Expand Down
8 changes: 4 additions & 4 deletions tests/example_tests/test_glb_usd.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

def test_glb_usd():
# Get the example files
if sys.version_info.minor >= 13:
warnings.warn("Test not supported for Python >= 3.13")
if sys.version_info.minor >= 14:
warnings.warn("Test not supported for Python >= 3.14")
return
base_uri = "https://s3.amazonaws.com/www3.ensight.com/PyEnSight/ExampleData"
filenames = ["fluent_elbow.glb", "rwing_bsl_1.glb", "rwing_bsl_2.glb", "ens_car_exts.glb"]
Expand All @@ -38,8 +38,8 @@ def test_glb_usd():


def test_ensight_glb_usd():
if sys.version_info.minor >= 13:
warnings.warn("Test not supported for Python >= 3.13")
if sys.version_info.minor >= 14:
warnings.warn("Test not supported for Python >= 3.14")
return
# Get the example files: both generated by Ensight, _10.glb is time varying.
base_uri = "https://s3.amazonaws.com/www3.ensight.com/PyEnSight/ExampleData"
Expand Down
4 changes: 2 additions & 2 deletions tests/example_tests/test_usd_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def wait_for_idle(session):


def test_usd_export(tmpdir, pytestconfig: pytest.Config):
if sys.version_info.minor >= 13:
warnings.warn("Test not supported for Python >= 3.13")
if sys.version_info.minor >= 14:
warnings.warn("Test not supported for Python >= 3.14")
return
data_dir = tmpdir.mkdir("datadir")
use_local = pytestconfig.getoption("use_local_launcher")
Expand Down
Loading