From: Daniele Varrazzo Date: Tue, 14 Jan 2025 20:29:30 +0000 (+0100) Subject: ci(macos): drop Python 3.8 build on macOS arm64 X-Git-Tag: 3.2.4~4^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89f3f82ee160905a0fbd4a6272de544a49587e08;p=thirdparty%2Fpsycopg.git ci(macos): drop Python 3.8 build on macOS arm64 We weren't distributing this combination anyway even when linking to Homebrew libraries. --- 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