Skip to content

Commit

Permalink
CI: Build MacOS wheels for all supported Python versions
Browse files Browse the repository at this point in the history
Because of the cost of MacOS GitHub runners, we did not build wheels for each
supported version of Python on MacOS.  This patch teaches the CI to build a
wheel not just for 3.11, but also for 3.7, 3.8, 3.9, 3.10, and 3.12.

Signed-off-by: Patrick M. Niedzielski <[email protected]>
  • Loading branch information
pniedzielski committed Jan 25, 2024
1 parent be2b7cc commit da69ac6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ jobs:
fail-fast: false
matrix:
os: [macos-12]
cibw_python: ["cp311-*"]
cibw_python:
["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]
cibw_arch: ["x86_64"]

steps:
Expand Down

0 comments on commit da69ac6

Please sign in to comment.