From de88abce5e2c777dd47e3efb8f6e388e8048cd43 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 10 Oct 2023 09:33:56 +0200 Subject: [PATCH] Exclude Pyside2 from macOS builds due to wheel availability. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a224e4..6a7df40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,3 +45,8 @@ jobs: matrix: framework: [ "toga", "pyside2", "pyside6", "ppb", "pygame" ] runner-os: [ "macos-latest", "ubuntu-22.04", "windows-latest" ] + exclude: + # PySide2 doesn't publish *any* universal or ARM64 wheels, and is unlikely to + # ever do so, so we can't test pyside2 on macOS + - runner-os: "macos-latest" + framework: "pyside2"