Skip to content

Commit 26dfdaf

Browse files
committed
Clarify comments
1 parent af73588 commit 26dfdaf

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
# macos-14 is apple silicon
1615
os: [ubuntu-22.04, macos-14, windows-2022]
1716

1817
steps:
@@ -45,8 +44,7 @@ jobs:
4544
env:
4645
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*"
4746
CIBW_SKIP: "*-win32 pp* *-musllinux_i686" # Skip win32, PyPy and muslinux32 builds
48-
# Build wheels for Apple x86_64 only; we use another workflow for Apple arm64
49-
CIBW_ARCHS_MACOS: "native"
47+
CIBW_ARCHS_MACOS: "native" # macos-14 is apple silicon ie. arm64
5048
# Build manylinux2014 wheels
5149
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
5250
CIBW_MANYLINUX_I686_IMAGE: manylinux2014

build_macos_arm64_wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python -m pip install "cibuildwheel>=2.22,<2.23"
66
export CIBW_ARCHS_MACOS="arm64"
77
export CIBW_BEFORE_ALL='python -m pip install invoke && invoke build.deps'
88
export CIBW_BEFORE_BUILD='python -m pip install invoke && invoke build.nassl'
9-
export CIBW_BUILD='cp39-* cp310-* cp311-* cp312-*'
9+
export CIBW_BUILD='cp39-* cp310-* cp311-* cp312-* cp313-*'
1010
export CIBW_TEST_COMMAND='python -m pytest {project}/tests'
1111
export CIBW_TEST_REQUIRES="pytest"
1212

0 commit comments

Comments
 (0)