From f7d2e076ae20f5d663aa80a4519d0d04cf8f9cc4 Mon Sep 17 00:00:00 2001 From: Matt Wozniski Date: Wed, 10 Apr 2024 18:19:16 -0400 Subject: [PATCH] Fix publication of x86_64 wheels This was broken when we added support for building manylinux2010 wheels for modern Python interpreters due to a misuse of the `include` configuration of the GitHub Actions matrix job. Signed-off-by: Matt Wozniski --- .github/workflows/build_wheels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 875266ec2f..9dc6234e46 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -58,6 +58,7 @@ jobs: fail-fast: false matrix: wheel_type: ${{ fromJSON(needs.choose_linux_wheel_types.outputs.wheel_types) }} + manylinux2010_hack: [""] include: - wheel_type: manylinux_x86_64 manylinux2010_hack: "_manylinux2010_hack"