There was an error while loading. Please reload this page.
1 parent 06e95d2 commit 2d52ad5Copy full SHA for 2d52ad5
2 files changed
.github/workflows/publish.yaml
bindings/Makefile
@@ -12,6 +12,13 @@ build-release:
12
build-python: build-release
13
cd python && uv build
14
15
+prepare-release-python: build-python
16
+ cd python && \
17
+ uvx auditwheel repair dist/*-py3-none-any.whl --wheel-dir dist/ && \
18
+ rm dist/*-py3-none-any.whl && \
19
+ uv run --isolated --no-project --with dist/*.whl python -c "import boltz_client" && \
20
+ uv run --isolated --no-project --with dist/*.tar.gz python -c "import boltz_client"
21
+
22
format-python:
23
# Also formats Python tests
24
cd python && uv run ruff format . ../tests/bindings
0 commit comments