From 19dd635918dfb145c574a1bd79ce1931b614c053 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 30 Mar 2022 18:39:13 +1100 Subject: [PATCH] Exclude macOS builds rather than include --- .github/workflows/wheels-macos.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels-macos.yml b/.github/workflows/wheels-macos.yml index 0e66de576..2b8b0381f 100644 --- a/.github/workflows/wheels-macos.yml +++ b/.github/workflows/wheels-macos.yml @@ -21,15 +21,15 @@ jobs: strategy: fail-fast: false matrix: - python: [ "3.8", "3.9", "3.10" ] + python: [ "3.7", "3.8", "3.9", "3.10", "pypy3.7-7.3.8", "pypy3.8-7.3.8" ] platform: [ "arm64", "x86_64" ] - include: + exclude: - python: "3.7" - platform: "x86_64" + platform: "arm64" - python: "pypy3.7-7.3.8" - platform: "x86_64" + platform: "arm64" - python: "pypy3.8-7.3.8" - platform: "x86_64" + platform: "arm64" env: BUILD_COMMIT: ${{ inputs.build-commit }} PLAT: ${{ matrix.platform }}