From 89f3f82ee160905a0fbd4a6272de544a49587e08 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 14 Jan 2025 21:29:30 +0100 Subject: [PATCH] ci(macos): drop Python 3.8 build on macOS arm64 We weren't distributing this combination anyway even when linking to Homebrew libraries. --- .github/workflows/packages-bin.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packages-bin.yml b/.github/workflows/packages-bin.yml index 6bf7f1ffb..eec80a8bf 100644 --- a/.github/workflows/packages-bin.yml +++ b/.github/workflows/packages-bin.yml @@ -105,7 +105,12 @@ jobs: fail-fast: false matrix: arch: [x86_64, arm64] - pyver: [cp38, cp39, cp310, cp311, cp312, cp313] + pyver: [cp39, cp310, cp311, cp312, cp313] + include: + # cp38 on arm64 can be built but cannot be tested: + # https://github.com/pypa/cibuildwheel/pull/1169 + - arch: x86_64 + pyver: cp38 steps: - name: Checkout repos -- 2.47.2