diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 8550ea002..5c5777cb1 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -54,7 +54,7 @@ jobs: - name: "Prep README.md" run: python scripts/transform_readme.py --target pypi - name: "Build sdist" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: command: sdist args: --out dist @@ -74,7 +74,7 @@ jobs: # uv-build - name: "Build sdist uv-build" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: command: sdist args: --out crates/uv-build/dist -m crates/uv-build/Cargo.toml @@ -103,7 +103,7 @@ jobs: # uv - name: "Build wheels - x86_64" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: x86_64 args: --release --locked --out dist --features self-update @@ -133,7 +133,7 @@ jobs: # uv-build - name: "Build wheels uv-build - x86_64" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: x86_64 args: --profile minimal-size --locked --out crates/uv-build/dist -m crates/uv-build/Cargo.toml @@ -157,7 +157,7 @@ jobs: # uv - name: "Build wheels - aarch64" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: aarch64 args: --release --locked --out dist --features self-update @@ -193,7 +193,7 @@ jobs: # uv-build - name: "Build wheels uv-build - aarch64" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: aarch64 args: --profile minimal-size --locked --out crates/uv-build/dist -m crates/uv-build/Cargo.toml @@ -231,7 +231,7 @@ jobs: # uv - name: "Build wheels" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} args: --release --locked --out dist --features self-update @@ -265,7 +265,7 @@ jobs: # uv-build - name: "Build wheels uv-build" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} args: --profile minimal-size --locked --out crates/uv-build/dist -m crates/uv-build/Cargo.toml @@ -356,7 +356,7 @@ jobs: # uv-build - name: "Build wheels uv-build" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.target }} manylinux: auto @@ -400,7 +400,7 @@ jobs: # uv - name: "Build wheels" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} # On `aarch64`, use `manylinux: 2_28`; otherwise, use `manylinux: auto`. @@ -450,7 +450,7 @@ jobs: # uv-build - name: "Build wheels uv-build" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} # On `aarch64`, use `manylinux: 2_28`; otherwise, use `manylinux: auto`. @@ -499,7 +499,7 @@ jobs: # uv - name: "Build wheels" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} manylinux: auto @@ -549,7 +549,7 @@ jobs: # uv-build - name: "Build wheels uv-build" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} manylinux: auto @@ -603,7 +603,7 @@ jobs: # uv - name: "Build wheels" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} manylinux: auto @@ -661,7 +661,7 @@ jobs: # uv-build - name: "Build wheels uv-build" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} manylinux: auto @@ -700,7 +700,7 @@ jobs: # uv - name: "Build wheels" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.target }} manylinux: musllinux_1_1 @@ -747,7 +747,7 @@ jobs: # uv-build - name: "Build wheels uv-build" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.target }} manylinux: musllinux_1_1 @@ -794,7 +794,7 @@ jobs: # uv - name: "Build wheels" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} manylinux: musllinux_1_1 @@ -861,7 +861,7 @@ jobs: # uv-build - name: "Build wheels" - uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1 + uses: PyO3/maturin-action@36db84001d74475ad1b8e6613557ae4ee2dc3598 # v1.47.2 with: target: ${{ matrix.platform.target }} manylinux: musllinux_1_1