From bb61c2d5343b8b0645178e1c4b74f1493834b771 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 22 May 2024 20:02:30 -0400 Subject: [PATCH] Revert "Revert "ci: drop native manylinux wheel for dual-tagged one (#3685)" (#3762)" (#3778) Now that we have https://github.com/astral-sh/uv/pull/3761, it should be safe to drop these. --- .github/workflows/build-binaries.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 4b581102c..3e31ffe14 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -276,11 +276,6 @@ jobs: strategy: matrix: platform: - - target: aarch64-unknown-linux-gnu - arch: aarch64 - # see https://github.com/astral-sh/ruff/issues/3791 - # and https://github.com/gnzlbg/jemallocator/issues/170#issuecomment-1503228963 - maturin_docker_options: -e JEMALLOC_SYS_WITH_LG_PAGE=16 - target: armv7-unknown-linux-gnueabihf arch: armv7 - target: arm-unknown-linux-musleabihf @@ -299,8 +294,6 @@ jobs: uses: PyO3/maturin-action@v1 with: target: ${{ matrix.platform.target }} - # On `aarch64`, use `manylinux: 2_28`; otherwise, use `manylinux: auto`. - manylinux: ${{ matrix.platform.arch == 'aarch64' && '2_28' || 'auto' }} docker-options: ${{ matrix.platform.maturin_docker_options }} args: --release --locked --out dist --features self-update - uses: uraimo/run-on-arch-action@v2