Skip to content

Commit

Permalink
Fixes for manifold api change.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Vin committed Jan 12, 2024
1 parent b472b3a commit d40cd68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [
"dotmap ~= 1.3",
"mapbox_earcut >= 0.12.10",
"matplotlib ~= 3.2",
"manifold3d ~= 2.2",
"manifold3d == 2.3.0",
"networkx >= 2.6",
"numpy ~= 1.24",
"opencv-python ~= 4.5",
Expand All @@ -47,7 +47,7 @@ dependencies = [
"scikit-image ~= 0.21",
"scipy ~= 1.7",
"shapely ~= 2.0",
"trimesh >=4.0.3, <5",
"trimesh >=4.0.9, <5",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tests/core/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ def test_unify_mesh():

fixed_mesh = unifyMesh(bad_mesh)
assert fixed_mesh.is_volume
assert fixed_mesh.body_count == 1
assert fixed_mesh.body_count == 3

0 comments on commit d40cd68

Please sign in to comment.