We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f54558 commit f8e0e36Copy full SHA for f8e0e36
1 file changed
.github/workflows/build-wheels.yml
@@ -77,7 +77,17 @@ jobs:
77
78
- name: Install cibuildwheel
79
run: uv sync --project=${{ inputs.pyproject-directory }} --locked --only-group wheels
80
+
81
+ - name: macOS Intel: build x86_64 only
82
+ if: matrix.os == 'macos-15-intel'
83
+ shell: bash
84
+ run: echo "CIBW_ARCHS_MACOS=x86_64" >> "$GITHUB_ENV"
85
86
+ - name: macOS ARM: build arm64 only
87
+ if: matrix.os == 'macos-14'
88
89
+ run: echo "CIBW_ARCHS_MACOS=arm64" >> "$GITHUB_ENV"
90
91
- name: Build wheels
92
run: uv run --only-group wheels --project=${{ inputs.pyproject-directory }} cibuildwheel sdist.tar.gz
93
0 commit comments