From 6b8fda80d6278aaf751d1c5d3ab018469d795906 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Thu, 29 Oct 2020 00:48:33 -0400 Subject: [PATCH] Add CPython 3.9 wheels. --- .github/workflows/cibuildwheel.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index ba9365b3f7a6..ac542bf2ab77 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -34,6 +34,16 @@ jobs: run: | cp setup.cfg.template setup.cfg + - name: Build wheels for CPython 3.9 + run: | + python -m cibuildwheel --output-dir dist + env: + CIBW_BUILD: "cp39-*" + CIBW_MANYLINUX_X86_64_IMAGE: manylinux1 + CIBW_MANYLINUX_I686_IMAGE: manylinux1 + CIBW_BEFORE_BUILD: pip install certifi numpy==1.19.3 + MPL_DISABLE_FH4: "yes" + - name: Build wheels for CPython run: | python -m cibuildwheel --output-dir dist