Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a74f4d4

Browse files
committed
Update to cibuildwheel 2.7.0
And remove some duplication.
1 parent ac5b0eb commit a74f4d4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
env:
3434
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
3535
MACOSX_DEPLOYMENT_TARGET: "10.12"
36+
CIBUILDWHEEL_VERSION: "2.7.0"
3637
strategy:
3738
matrix:
3839
os: [ubuntu-18.04, windows-latest, macos-10.15]
@@ -53,7 +54,7 @@ jobs:
5354
fetch-depth: 0
5455

5556
- name: Build wheels for CPython 3.10
56-
uses: pypa/cibuildwheel@v2.6.0
57+
uses: pypa/cibuildwheel@v${{ env.CIBUILDWHEEL_VERSION }}
5758
env:
5859
CIBW_BUILD: "cp310-*"
5960
CIBW_SKIP: "*-musllinux*"
@@ -66,7 +67,7 @@ jobs:
6667
CIBW_ARCHS: ${{ matrix.cibw_archs }}
6768

6869
- name: Build wheels for CPython 3.9
69-
uses: pypa/cibuildwheel@v2.6.0
70+
uses: pypa/cibuildwheel@v${{ env.CIBUILDWHEEL_VERSION }}
7071
env:
7172
CIBW_BUILD: "cp39-*"
7273
CIBW_SKIP: "*-musllinux*"
@@ -79,7 +80,7 @@ jobs:
7980
CIBW_ARCHS: ${{ matrix.cibw_archs }}
8081

8182
- name: Build wheels for CPython 3.8
82-
uses: pypa/cibuildwheel@v2.6.0
83+
uses: pypa/cibuildwheel@v${{ env.CIBUILDWHEEL_VERSION }}
8384
env:
8485
CIBW_BUILD: "cp38-*"
8586
CIBW_SKIP: "*-musllinux*"
@@ -92,7 +93,7 @@ jobs:
9293
CIBW_ARCHS: ${{ matrix.cibw_archs }}
9394

9495
- name: Build wheels for PyPy
95-
uses: pypa/cibuildwheel@v2.6.0
96+
uses: pypa/cibuildwheel@v${{ env.CIBUILDWHEEL_VERSION }}
9697
env:
9798
CIBW_BUILD: "pp38-*"
9899
CIBW_SKIP: "*-musllinux*"

0 commit comments

Comments
 (0)