From 8e635b05fc1c0306b749800555fe4140e19e2eb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 05:44:01 +0000 Subject: [PATCH] build(deps): update trimesh requirement in /services/data Updates the requirements on [trimesh](https://github.com/mikedh/trimesh) to permit the latest version. - [Release notes](https://github.com/mikedh/trimesh/releases) - [Commits](https://github.com/mikedh/trimesh/compare/5.0.0...5.1.0) --- updated-dependencies: - dependency-name: trimesh dependency-version: 5.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- services/data/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/data/requirements.txt b/services/data/requirements.txt index 11ef5dc7..b324043b 100644 --- a/services/data/requirements.txt +++ b/services/data/requirements.txt @@ -11,7 +11,7 @@ ifctester>=0.8 # IDS / openBIM model validation # AND validating trimesh 5 against the paths below — it drives mesh booleans (with manifold3d, at # 3.5.2) and 2D section cuts, so a major move there is not free. `test_lock_satisfies_requirements.py` # now reads this file, so the two can no longer disagree silently. -trimesh>=5.0.0 # clash narrow phase (mesh booleans) + 2D section cuts +trimesh>=5.1.0 # clash narrow phase (mesh booleans) + 2D section cuts manifold3d>=3.5.2 # boolean intersection engine for trimesh scipy>=1.18.1 # trimesh path assembly (section drawings) networkx>=3.6.1 # trimesh path traversal (section drawings)