From 30981eb04d8b29e2aee129552dc345b3456b7732 Mon Sep 17 00:00:00 2001 From: AlexWells Date: Mon, 6 Jul 2026 12:08:42 +0100 Subject: [PATCH] Change manylinux image type Numpy no longer provides manylinux2014 images. It seems to be backwards compatible to just bump the manulinux version for all versions of Python that we support. --- .github/workflows/code.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index e88efa10..01908d95 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -118,7 +118,7 @@ jobs: # Disable auditwheel as it isn't compatible with setuptools_dso approach # https://github.com/mdavidsaver/setuptools_dso/issues/17 CIBW_REPAIR_WHEEL_COMMAND: "" - CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 + CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 CIBW_ENVIRONMENT_LINUX: SETUPTOOLS_DSO_PLAT_NAME=manylinux2014_x86_64 CIBW_SKIP: "*-musllinux*" # epicscorelibs doesn't build on musllinux platforms