]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
ci(macos): drop Python 3.8 build on macOS arm64
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 14 Jan 2025 20:29:30 +0000 (21:29 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 14 Jan 2025 20:31:19 +0000 (21:31 +0100)
We weren't distributing this combination anyway even when linking to
Homebrew libraries.

.github/workflows/packages-bin.yml

index 6bf7f1ffb4648e72da30839cd715b50d4e7f7110..eec80a8bf70a675ead26503e4a7049fca758bb93 100644 (file)
@@ -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