Skip to content

Commit 89a7d38

Browse files
authored
Release: Embree Hotfix (#2532)
Test-only follow up for embree 2.x -> 4.x transition in #2520
2 parents d3f2f96 + f85d38f commit 89a7d38

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = ["setuptools >= 61.0", "wheel"]
55
[project]
66
name = "trimesh"
77
requires-python = ">=3.8"
8-
version = "4.12.0"
8+
version = "4.12.1"
99
authors = [{name = "Michael Dawson-Haggerty", email = "mikedh@kerfed.com"}]
1010
license = {file = "LICENSE.md"}
1111
description = "Import, export, process, analyze and view triangular meshes."

tests/test_ray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_rays():
2727
def test_rps():
2828
from trimesh import ray as ray_mod
2929

30-
for use_embree in [True, False]:
30+
for use_embree in [True, False] if ray_mod.has_embree else [False]:
3131
dimension = (10000, 3)
3232
sphere = g.get_mesh("unit_sphere.STL")
3333

0 commit comments

Comments
 (0)