From 6c2c3a9507d562bb2adc35bb6d23d3cf6aa5bbc8 Mon Sep 17 00:00:00 2001 From: Tomas Hrnciar Date: Tue, 10 Aug 2021 08:17:03 +0200 Subject: [PATCH 1/2] Add CPython 3.10 wheels --- .github/workflows/cibuildwheel.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 9114df686a96..12b7c0a8024b 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -60,6 +60,17 @@ jobs: CIBW_BUILD: "cp37-* cp38-*" CIBW_ARCHS: aarch64 + - name: Build wheels for CPython 3.10 + run: | + python -m cibuildwheel --output-dir dist + 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 From 47515b3ccdc0d0fca8046a8dbe388f88974178b2 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Wed, 1 Sep 2021 15:53:09 -0400 Subject: [PATCH 2/2] Skip Python 3.10 wheels on macOS. --- .github/workflows/cibuildwheel.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 12b7c0a8024b..de27ac4bb2ca 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -63,6 +63,7 @@ jobs: - 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