We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f43ad commit 123171eCopy full SHA for 123171e
.github/workflows/wheels.yml
@@ -16,7 +16,7 @@ jobs:
16
runs-on: ${{ matrix.os }}
17
strategy:
18
matrix:
19
- os: [macos-13, macos-15]
+ os: [macos-13, macos-14, macos-15]
20
python: [3.9, "3.10", 3.11, 3.12]
21
steps:
22
- name: Checkout
@@ -44,7 +44,7 @@ jobs:
44
export LDFLAGS+=" -arch arm64"
45
python -m build --wheel
46
- name: Build Wheel (x86_64)
47
- if: matrix.os == 'macos-13'
+ if: matrix.os == 'macos-13' || matrix.os == 'macos-14'
48
run: |
49
export PLAT="x86_64"
50
export _PYTHON_HOST_PLATFORM="macosx-11.0-x86_64"
@@ -103,7 +103,7 @@ jobs:
103
104
105
106
107
108
109
- name: Download wheels
0 commit comments