From 37f288dc96ae4fc81d75ed41f644207f0ebea80d Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Mon, 13 Jun 2022 10:53:29 +0100 Subject: [PATCH] build pypy3.9 with manylinux2014 image it no longer supports 2010 image https://github.com/pypa/cibuildwheel/pull/1031 --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ede2614..be98b7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,9 +59,16 @@ jobs: - os: ubuntu-latest arch: auto64 type: manylinux2010 - build: "pp*-manylinux* cp310-manylinux*" + build: "pp37-manylinux* pp38-manylinux* cp310-manylinux*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010 CIBW_MANYLINUX_I686_IMAGE: manylinux2010 + # pypy3.9 only works with manylinux2014 image + - os: ubuntu-latest + arch: auto64 + type: manylinux2014 + build: "pp39-manylinux*" + CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 + CIBW_MANYLINUX_I686_IMAGE: manylinux2014 - os: macos-latest arch: universal2