From 23e206018c0b95b8de88b1d350ba57c4e1f9f2c5 Mon Sep 17 00:00:00 2001 From: Daniel Rossi Date: Mon, 19 Jan 2026 20:25:38 +1100 Subject: [PATCH] fix: add DA3 package to uv project - uv project is required to have the DA3 source configured to install properly. Requires to specify Python 3.12 with `uv python pin 3.12` --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 7ac7668..a18da15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ dependencies = [ "imageio>=2.30.0", "imageio-ffmpeg>=0.4.7", "decord>=0.6.0", + "depth-anything-3", ] [project.scripts] @@ -63,6 +64,9 @@ dev-dependencies = [ "mypy>=1.0.0", ] +[tool.uv.sources] +depth-anything-3 = { git = "https://github.com/ByteDance-Seed/Depth-Anything-3" } + [tool.black] line-length = 100 target-version = ['py39', 'py310', 'py311', 'py312']