From e8dd74445af57ac3c44288b5ba9a5a7b4ed74e57 Mon Sep 17 00:00:00 2001 From: "Tahir H. Butt" Date: Thu, 12 Nov 2020 17:28:30 -0500 Subject: [PATCH 1/3] ci: update cibuildwheel to deploy 3.9 wheels --- .github/workflows/build_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_deploy.yml b/.github/workflows/build_deploy.yml index 571b844c4ba..edb4cf2d3c1 100644 --- a/.github/workflows/build_deploy.yml +++ b/.github/workflows/build_deploy.yml @@ -27,7 +27,7 @@ jobs: - name: Install cibuildwheel run: | - python -m pip install cibuildwheel==1.5.5 + python -m pip install cibuildwheel==1.6.4 - name: Build wheels run: | From e282d592c798ef76fd06652221a9e1052d67f23c Mon Sep 17 00:00:00 2001 From: "Tahir H. Butt" Date: Thu, 12 Nov 2020 17:45:14 -0500 Subject: [PATCH 2/3] add release note --- .../notes/build-deploy-py39-wheels-6524f77277e3c788.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml diff --git a/releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml b/releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml new file mode 100644 index 00000000000..ac9c9a67f79 --- /dev/null +++ b/releasenotes/notes/build-deploy-py39-wheels-6524f77277e3c788.yaml @@ -0,0 +1,3 @@ +--- +prelude: > + Build and deploy Python 3.9 wheels for releases From 564394b4b89387eb803d0ed0372bcc97776a16a5 Mon Sep 17 00:00:00 2001 From: "Tahir H. Butt" Date: Thu, 12 Nov 2020 18:24:10 -0500 Subject: [PATCH 3/3] skip py39 on windows --- .github/workflows/build_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_deploy.yml b/.github/workflows/build_deploy.yml index edb4cf2d3c1..34d4dde2587 100644 --- a/.github/workflows/build_deploy.yml +++ b/.github/workflows/build_deploy.yml @@ -33,7 +33,7 @@ jobs: run: | python -m cibuildwheel --output-dir wheelhouse env: - CIBW_SKIP: pp* cp27-win* + CIBW_SKIP: pp* cp27-win* cp39-win* - uses: actions/upload-artifact@v2 with: