Skip to content

Commit 2f65a38

Browse files
Fix embree install getting skipped on windows (#367)
The platform_machine on windows in not x86_64 but rather AMD64. These are just different naming conventions for the same thing.
1 parent 6be1ff6 commit 2f65a38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies = [
4949
"OpenEXR",
5050
"scikit-image",
5151
"trimesh",
52-
"embreex; platform_machine=='x86_64'",
52+
"embreex; platform_machine=='x86_64' or platform_machine=='AMD64'",
5353
"onnxruntime==1.18.0",
5454
]
5555

0 commit comments

Comments
 (0)