From a3339b7bdd04c456862a254a16a8916e6b995370 Mon Sep 17 00:00:00 2001 From: Will Jones Date: Thu, 28 May 2026 11:30:42 -0700 Subject: [PATCH] ci: drop manylinux2_17 wheel builds (#3455) manylinux2_17 reached EOL in 2024 and pyarrow stopped publishing 2_17 wheels long ago. We already build manylinux2_28 wheels, so drop the 2_17 matrix entries. Fixes #3452 Co-authored-by: Claude Opus 4.7 (1M context) --- .github/workflows/pypi-publish.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 00289b383..b15f2e6b2 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -27,19 +27,11 @@ jobs: strategy: matrix: config: - - platform: x86_64 - manylinux: "2_17" - extra_args: "" - runner: ubuntu-22.04 - platform: x86_64 manylinux: "2_28" extra_args: "--features fp16kernels" runner: ubuntu-22.04 - - platform: aarch64 - manylinux: "2_17" - extra_args: "" - # For successful fat LTO builds, we need a large runner to avoid OOM errors. - runner: ubuntu-2404-8x-arm64 + # For successful fat LTO builds, we need a large runner to avoid OOM errors. - platform: aarch64 manylinux: "2_28" extra_args: "--features fp16kernels"