Skip to content

Commit

Permalink
Clarify comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nabla-c0d3 committed Dec 26, 2024
1 parent af73588 commit 26dfdaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-14 is apple silicon
os: [ubuntu-22.04, macos-14, windows-2022]

steps:
Expand Down Expand Up @@ -45,8 +44,7 @@ jobs:
env:
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*"
CIBW_SKIP: "*-win32 pp* *-musllinux_i686" # Skip win32, PyPy and muslinux32 builds
# Build wheels for Apple x86_64 only; we use another workflow for Apple arm64
CIBW_ARCHS_MACOS: "native"
CIBW_ARCHS_MACOS: "native" # macos-14 is apple silicon ie. arm64
# Build manylinux2014 wheels
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
Expand Down
2 changes: 1 addition & 1 deletion build_macos_arm64_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ python -m pip install "cibuildwheel>=2.22,<2.23"
export CIBW_ARCHS_MACOS="arm64"
export CIBW_BEFORE_ALL='python -m pip install invoke && invoke build.deps'
export CIBW_BEFORE_BUILD='python -m pip install invoke && invoke build.nassl'
export CIBW_BUILD='cp39-* cp310-* cp311-* cp312-*'
export CIBW_BUILD='cp39-* cp310-* cp311-* cp312-* cp313-*'
export CIBW_TEST_COMMAND='python -m pytest {project}/tests'
export CIBW_TEST_REQUIRES="pytest"

Expand Down

0 comments on commit 26dfdaf

Please sign in to comment.