From 3285f09c92146fd09e28d9536b187f145b6c1821 Mon Sep 17 00:00:00 2001 From: Mustafa Aldemir Date: Mon, 8 Dec 2025 02:50:03 +0100 Subject: [PATCH] Add huggingface-hub dependency (#11794) ### What problem does this PR solve? When a script has a block like this at the top, then uv run download_deps.py ignores the [project].dependencies in pyproject.toml and only uses that dependencies = [...] list. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- download_deps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/download_deps.py b/download_deps.py index 352e27f91..550a806a5 100644 --- a/download_deps.py +++ b/download_deps.py @@ -5,6 +5,7 @@ # requires-python = ">=3.10" # dependencies = [ # "nltk", +# "huggingface-hub" # ] # ///