Skip to content

Commit dad29c0

Browse files
committed
Fix PyPI release
1 parent 0a6f2e2 commit dad29c0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release_pypi.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,16 @@ jobs:
8484
if: runner.os == 'Linux' && contains(matrix.build.TARGET, '-gnu')
8585
working-directory: pypi
8686
run: |
87-
uv run --with maturin==1.15.1 --with ziglang==0.15.1 --with cargo-zigbuild==0.21.1 \
87+
uvx --from maturin==1.11.5 --with ziglang==0.15.1 --with cargo-zigbuild==0.21.1 \
8888
maturin build --release --target ${{ matrix.build.TARGET }} --zig --compatibility manylinux_2_28 --out dist
8989
9090
- name: Build Python wheels (Linux musllinux with Zig)
9191
if: runner.os == 'Linux' && contains(matrix.build.TARGET, '-musl')
9292
working-directory: pypi
9393
run: |
94-
uv run --with maturin==1.15.1 --with ziglang==0.15.1 --with cargo-zigbuild==0.21.1 \
94+
sudo apt-get update
95+
sudo apt-get install -y musl-tools
96+
uvx --from maturin==1.11.5 --with ziglang==0.15.1 --with cargo-zigbuild==0.21.1 \
9597
maturin build --release --target ${{ matrix.build.TARGET }} --zig --out dist
9698
9799
- name: Build Python wheels (Windows/macOS)

0 commit comments

Comments
 (0)