We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7decd47 commit 92b552dCopy full SHA for 92b552d
1 file changed
.github/workflows/wheel_builder.yml
@@ -7,21 +7,21 @@ jobs:
7
runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
- os: [ubuntu-latest, ubuntu-20.04, macOS-10.15]
+ os: [ubuntu-latest, ubuntu-20.04, macos-latest]
11
steps:
12
- uses: actions/checkout@v2
13
- uses: actions/setup-python@v2
14
15
- name: cibuildwheel installation
16
- run: python -m pip install cibuildwheel==1.11.0 twine
+ run: python -m pip install cibuildwheel twine
17
18
- name: Install gcc on macOS
19
- if: matrix.os == 'macOS-10.15'
+ if: matrix.os == 'macos-latest'
20
run: |
21
brew install gcc@11
22
23
- name: build specified wheels on macOS
24
25
26
python -m cibuildwheel --output-dir dist
27
env:
0 commit comments