From 6de1960738eb8f976a68457a000cbbf20385b804 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 4 Aug 2022 17:02:53 -0400 Subject: [PATCH] BLD: update the manylinux versions used We need newer versions of c++ for the font fallback. A compatible version of pip is in the CPython source for manylinux2010 : py 3.8.0+ manylinux2014 : py 3.9.0+ https://github.com/pypa/manylinux#manylinux --- .github/workflows/cibuildwheel.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 20bd91221c43..d7ce686b98ca 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -70,8 +70,8 @@ jobs: env: CIBW_BUILD: "cp39-*" CIBW_SKIP: "*-musllinux*" - CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 - CIBW_MANYLINUX_I686_IMAGE: manylinux1 + CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 + CIBW_MANYLINUX_I686_IMAGE: manylinux2014 CIBW_BEFORE_BUILD: >- pip install certifi oldest-supported-numpy && git clean -fxd build @@ -83,8 +83,8 @@ jobs: env: CIBW_BUILD: "cp38-*" CIBW_SKIP: "*-musllinux*" - CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 - CIBW_MANYLINUX_I686_IMAGE: manylinux1 + CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010 + CIBW_MANYLINUX_I686_IMAGE: manylinux2010 CIBW_BEFORE_BUILD: >- pip install certifi numpy==1.19.2 && git clean -fxd build