From 66d9fd327c06d8a7a336711e077f4ec20f0a47ef Mon Sep 17 00:00:00 2001 From: Alpamys Date: Mon, 23 Mar 2026 21:00:04 +0500 Subject: [PATCH] Fix wheel build: remove duplicate force-include, bump to v0.7.1 The force-include config duplicated static files already included via packages = ["soup_cli"], causing PyPI to reject the wheel with 400. Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 5 +---- soup_cli/__init__.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2250b6d..6944bd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "soup-cli" -version = "0.7.0" +version = "0.7.1" description = "Fine-tune LLMs in one command. No SSH, no config hell." readme = "README.md" license = "MIT" @@ -61,9 +61,6 @@ Issues = "https://github.com/MakazhanAlpamys/Soup/issues" [tool.hatch.build.targets.wheel] packages = ["soup_cli"] -[tool.hatch.build.targets.wheel.force-include] -"soup_cli/ui/static" = "soup_cli/ui/static" - [tool.ruff] target-version = "py39" line-length = 100 diff --git a/soup_cli/__init__.py b/soup_cli/__init__.py index 40b06b8..9002493 100644 --- a/soup_cli/__init__.py +++ b/soup_cli/__init__.py @@ -1,3 +1,3 @@ """Soup CLI — Fine-tune LLMs in one command.""" -__version__ = "0.7.0" +__version__ = "0.7.1"