From 0fb4c7d6ed47c8c326710bf42765044fd8d11202 Mon Sep 17 00:00:00 2001 From: Alishahryar1 Date: Mon, 1 Jun 2026 22:54:55 -0700 Subject: [PATCH] fix: remove duplicate api/admin_static wheel force-include The api package already ships admin_static assets; the extra force-include entry caused hatchling to fail wheel builds with duplicate archive paths. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1c32b357..abc46d53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,6 @@ packages = ["api", "cli", "config", "core", "messaging", "providers"] [tool.hatch.build.targets.wheel.force-include] ".env.example" = "cli/env.example" -"api/admin_static" = "api/admin_static" [tool.uv] required-version = ">=0.11.0"