From 5b8e32e0157a5181141266d8c35fa84756419370 Mon Sep 17 00:00:00 2001 From: Myungchul Keum Date: Wed, 8 Dec 2021 13:41:29 +0900 Subject: [PATCH] Restore pp37-win_amd64 build Apply fix of https://github.com/pypa/cibuildwheel/issues/817 --- .github/workflows/build-dist.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-dist.yml b/.github/workflows/build-dist.yml index 2b55360..5559654 100644 --- a/.github/workflows/build-dist.yml +++ b/.github/workflows/build-dist.yml @@ -25,10 +25,10 @@ jobs: submodules: true - name: Build wheels - uses: pypa/cibuildwheel@v2.1.1 + uses: pypa/cibuildwheel@v2.3.0 env: # Skip build errors - CIBW_SKIP: "cp310-macosx_x86_64 pp*-macosx_x86_64 pp*-win*" + CIBW_SKIP: "pp37-macosx_x86_64 pp38-*" - uses: actions/upload-artifact@v2 with: @@ -49,9 +49,10 @@ jobs: platforms: all - name: Build wheels - uses: pypa/cibuildwheel@v2.1.1 + uses: pypa/cibuildwheel@v2.3.0 env: CIBW_ARCHS_LINUX: aarch64 + CIBW_BUILD: cp*-manylinux_aarch64 - uses: actions/upload-artifact@v2 with: @@ -59,7 +60,7 @@ jobs: build_sdist: name: Build source distribution - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: