Skip to content

Commit 9fc2142

Browse files
Muizzkolapoclaude
andauthored
fix: prevent sdist exclude from removing agent_actions/llm/batch (#23)
The hatchling exclude pattern "batch/" matched any directory named batch at any depth, inadvertently stripping agent_actions/llm/batch/ from built distributions. Adding a leading slash anchors the pattern to the project root so only the top-level batch/ fixtures directory is excluded. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ed633ef commit 9fc2142

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ exclude = [
9292
"tests/",
9393
".github/",
9494
".claude/",
95-
"batch/",
95+
"/batch/",
9696
"MagicMock/",
9797
"tasks/",
9898
]

0 commit comments

Comments
 (0)