]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
ci: skip test/build on macOS x86_64 for Python 3.11
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 25 Oct 2022 14:39:06 +0000 (16:39 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 25 Oct 2022 14:42:02 +0000 (16:42 +0200)
Package not available yet. See #424

.github/workflows/packages.yml
.github/workflows/tests.yml

index 31f774da965c3a28560e981d67c61d6e5acb6512..fcef42550bf0b8ac80f62e7db1215e955c183b1b 100644 (file)
@@ -169,7 +169,9 @@ jobs:
       matrix:
         # These archs require an Apple M1 runner: [arm64, universal2]
         arch: [x86_64]
-        pyver: [cp37, cp38, cp39, cp310, cp311]
+        # TODO: cp311 not available yet on Github runners. See #424
+        # pyver: [cp37, cp38, cp39, cp310, cp311]
+        pyver: [cp37, cp38, cp39, cp310]
 
     steps:
       - uses: actions/checkout@v3
index d8014fb33d16989242ef7ee168f49c25f0f7be81..642a5f085e8a18c8093999ec09bd4c825bb4e76c 100644 (file)
@@ -132,12 +132,13 @@ jobs:
           - {impl: python, python: "3.8"}
           - {impl: python, python: "3.9"}
           - {impl: python, python: "3.10"}
-          - {impl: python, python: "3.11"}
+          # TODO: cp311 not available yet on Github runners. See #424
+          # - {impl: python, python: "3.11"}
           - {impl: c, python: "3.7"}
           - {impl: c, python: "3.8"}
           - {impl: c, python: "3.9"}
           - {impl: c, python: "3.10"}
-          - {impl: c, python: "3.11"}
+          - {impl: c, python: "3.11"}
 
     env:
       PSYCOPG_IMPL: ${{ matrix.impl }}