From ae38e10d1b13a33621ae5f3b39f495a1c870f4fe Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Fri, 25 Jul 2025 12:20:32 -0700 Subject: [PATCH] chore: focus on Linux builds for Colab compatibility - Remove macOS from build matrix to simplify CI - Keep macOS configurations for future reference but they won't be used - This speeds up CI and focuses on the primary target (Colab/Linux) --- .github/workflows/build-cibuildwheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-cibuildwheel.yml b/.github/workflows/build-cibuildwheel.yml index eb930d1..4f477f1 100644 --- a/.github/workflows/build-cibuildwheel.yml +++ b/.github/workflows/build-cibuildwheel.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest] # Focus on Linux/manylinux for Colab compatibility steps: - uses: actions/checkout@v4