From c8db08c36e0a604ae74339d4097adfd36f0dd6e5 Mon Sep 17 00:00:00 2001 From: Stephen Oman Date: Fri, 5 Jul 2024 19:54:38 +0100 Subject: [PATCH] Bump cibuildwheel version Needed to fix the "Could not retrieve mirrorlist error" in the test_and_deploy workflow. See https://github.com/pypa/cibuildwheel/issues/1915 for more details on this error. --- .github/workflows/test_and_deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 6f453fad7..9e6dcc5be 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -127,7 +127,7 @@ jobs: platforms: all - name: Build wheels if: github.event_name != 'release' - uses: pypa/cibuildwheel@v2.15.0 # The main configuration is in pyproject.toml + uses: pypa/cibuildwheel@v2.19.2 # The main configuration is in pyproject.toml env: CIBW_BUILD: "cp311-manylinux*" # Build only python 3.11 wheels for testing # Increase verbosity to see what's going on in the build in case of failure @@ -136,7 +136,7 @@ jobs: auditwheel show {wheel} && auditwheel repair -w {dest_dir} {wheel} - name: Build release wheels if: github.event_name == 'release' && (github.event.action == 'released' || github.event.action == 'prereleased') - uses: pypa/cibuildwheel@v2.15.0 # The main configuration is in pyproject.toml + uses: pypa/cibuildwheel@v2.19.2 # The main configuration is in pyproject.toml env: # Set NLE_RELEASE_BUILD to 1 to build release wheels CIBW_ENVIRONMENT: "NLE_RELEASE_BUILD=1"