From 480514f0706c7f63d162a91db11e71adff537529 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Mon, 13 Sep 2021 15:41:52 -0400 Subject: [PATCH] Backport PR #20819: Add CPython 3.10 wheels --- .github/workflows/cibuildwheel.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 47455e74fac0..6bd35f22567d 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -61,6 +61,18 @@ jobs: CIBW_BUILD: "cp37-* cp38-*" CIBW_ARCHS: aarch64 + - name: Build wheels for CPython 3.10 + run: | + python -m cibuildwheel --output-dir dist + if: matrix.os != 'macos-latest' + env: + CIBW_BUILD: "cp310-*" + CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 + CIBW_MANYLINUX_I686_IMAGE: manylinux2014 + CIBW_BEFORE_BUILD: pip install certifi numpy==1.21.2 + MPL_DISABLE_FH4: "yes" + CIBW_ARCHS: ${{ matrix.cibw_archs }} + - name: Build wheels for CPython 3.9 run: | python -m cibuildwheel --output-dir dist