From da69ac6d1c8531aba0083c041dc08a680d15be1b Mon Sep 17 00:00:00 2001 From: "Patrick M. Niedzielski" Date: Wed, 24 Jan 2024 17:57:41 -0500 Subject: [PATCH] CI: Build MacOS wheels for all supported Python versions 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 --- .github/workflows/build_wheels.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 308c1d3..1ac8ac7 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -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: