Skip to content

Commit 0ed808a

Browse files
committed
Pin macOS to 10.15 for wheels
cibuildwheel does not support macOS 11 for PyPy.
1 parent 69931a6 commit 0ed808a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cibuildwheel.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
1919
strategy:
2020
matrix:
21-
os: [ubuntu-18.04, windows-latest, macos-latest]
21+
os: [ubuntu-18.04, windows-latest, macos-10.15]
2222
cibw_archs: ["auto"]
2323
include:
2424
- os: ubuntu-18.04
@@ -64,7 +64,7 @@ jobs:
6464
- name: Build wheels for CPython 3.10
6565
run: |
6666
python -m cibuildwheel --output-dir dist
67-
if: matrix.os != 'macos-latest'
67+
if: matrix.os != 'macos-10.15'
6868
env:
6969
CIBW_BUILD: "cp310-*"
7070
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014

0 commit comments

Comments
 (0)