Skip to content

Commit

Permalink
Bump cibuildwheel version
Browse files Browse the repository at this point in the history
Needed to fix the "Could not retrieve mirrorlist error" in the test_and_deploy workflow. See pypa/cibuildwheel#1915 for more details on this error.
  • Loading branch information
StephenOman authored Jul 5, 2024
1 parent 0f5b27d commit c8db08c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit c8db08c

Please sign in to comment.