From 8580ba21b50f595ad13160c2da0cdc8e7744e747 Mon Sep 17 00:00:00 2001 From: indeconsl Date: Sat, 18 Jul 2026 23:38:22 +0200 Subject: [PATCH] fix: declare missing runtime dependency 'addict' 'depth_anything_3' imports 'addict' at import time, but the package does not declare it in [project].dependencies, so a fresh 'pip install' (editable or not) fails with ImportError: No module named 'addict' on first import. Fixes #86 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 6a11c7ae..421ef407 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ license = { text = "Apache-2.0" } authors = [{ name = "Your Name" }] dependencies = [ + "addict", "pre-commit", "trimesh", "torch>=2",