Skip to content

Commit 261fc4e

Browse files
fix(ci): Use python -m build instead of uv build for semantic-release
The semantic-release action runs in its own Docker container where uv is not available. Use pip + build module instead. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e8bb0b8 commit 261fc4e

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
@@ -44,7 +44,7 @@ package = true
4444
[tool.semantic_release]
4545
assets = []
4646
build_command_env = []
47-
build_command = "uv build"
47+
build_command = "pip install build && python -m build"
4848
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
4949
commit_parser = "conventional"
5050
logging_use_named_masks = false

0 commit comments

Comments
 (0)