From 76b78e4aef0f0523604e5578a234e59b273c6bc7 Mon Sep 17 00:00:00 2001 From: Robin De Schepper <robin.deschepper93@gmail.com> Date: Fri, 8 Oct 2021 12:21:58 +0200 Subject: [PATCH] Switch to PyPA's `cibuildwheel` action repo's. (#1703) --- .github/workflows/ciwheel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ciwheel.yml b/.github/workflows/ciwheel.yml index 7eee44fe..e8078084 100644 --- a/.github/workflows/ciwheel.yml +++ b/.github/workflows/ciwheel.yml @@ -22,7 +22,7 @@ jobs: - name: Build wheels Linux if: ${{ startsWith(matrix.os, 'ubuntu') }} - uses: joerick/cibuildwheel@v1.9.0 + uses: pypa/cibuildwheel@v1.9.0 with: output-dir: dist env: @@ -35,7 +35,7 @@ jobs: - name: Build wheels macos if: ${{ startsWith(matrix.os, 'macos') }} - uses: joerick/cibuildwheel@v1.9.0 + uses: pypa/cibuildwheel@v1.9.0 with: output-dir: dist env: -- GitLab