We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b69828 commit 625e69cCopy full SHA for 625e69c
1 file changed
.github/workflows/build_macos_wheel.yaml
@@ -13,7 +13,7 @@ jobs:
13
runs-on: macos-latest
14
strategy:
15
matrix:
16
- arch: [arm64, x64]
+ arch: [arm64, x86_64]
17
18
steps:
19
- name: Checkout repository
@@ -31,7 +31,7 @@ jobs:
31
uses: actions/setup-python@v4
32
with:
33
python-version: "3.13"
34
- architecture: ${{ matrix.arch }}
+ architecture: ${{ matrix.arch == 'x86_64' && 'x64' || matrix.arch }}
35
36
- name: Install Python dependencies
37
run: |
@@ -52,11 +52,7 @@ jobs:
52
fi
53
- name: Build wheels (${{ matrix.arch }})
54
55
- if [ "${{ matrix.arch }}" = "x64" ]; then
56
- arch -x86_64 cibuildwheel --output-dir wheelhouse
57
- else
58
- cibuildwheel --output-dir wheelhouse
59
- fi
+ cibuildwheel --output-dir wheelhouse
60
env:
61
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*"
62
CIBW_SKIP: "pp* *musllinux* *win32"
0 commit comments