From 520cbc04a47379d4a427231f18aef0cc9b132471 Mon Sep 17 00:00:00 2001 From: wassname <1103714+wassname@users.noreply.github.com> Date: Sun, 5 Jul 2026 08:25:28 +0800 Subject: [PATCH] pyproject: allow-direct-references so the git openrouter_wrapper dep builds Hatchling rejects a direct git reference in an optional-dependency unless this flag is set; without it uv could not build tiny-mfv and every 'uv run' failed. Co-Authored-By: Claudypoo <288921227+claudypoo@users.noreply.github.com> --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f62ca4d..43ca720 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,5 +39,8 @@ dev = [ requires = ["hatchling"] build-backend = "hatchling.build" +[tool.hatch.metadata] +allow-direct-references = true # the api extra pulls openrouter_wrapper straight from git + [tool.hatch.build.targets.wheel] packages = ["src/tinymfv"]