From d2f4ffb89c012afc71d0b6a2d171b7a3e68bc97a Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Thu, 20 Mar 2025 20:26:50 +0100 Subject: [PATCH] Add no build isolation in numpy --- node-hub/dora-sam2/pyproject.toml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/node-hub/dora-sam2/pyproject.toml b/node-hub/dora-sam2/pyproject.toml index a4fd7c3f..864b18de 100644 --- a/node-hub/dora-sam2/pyproject.toml +++ b/node-hub/dora-sam2/pyproject.toml @@ -8,12 +8,15 @@ readme = "README.md" requires-python = ">=3.10" dependencies = [ - "dora-rs >= 0.3.9", - "huggingface-hub>=0.29.0", - "opencv-python>=4.11.0.86", - "sam2>=1.1.0", + "dora-rs >= 0.3.9", + "huggingface-hub>=0.29.0", + "opencv-python>=4.11.0.86", + "sam2>=1.1.0", ] +[tool.uv] +no-build-isolation-package = ['sam2'] + [dependency-groups] dev = ["pytest >=8.1.1", "ruff >=0.9.1"]