From c2eb3282aa4c2fdc0cfe2c1923fbf58450df2ce7 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Tue, 25 Oct 2022 16:39:06 +0200 Subject: [PATCH] ci: skip test/build on macOS x86_64 for Python 3.11 Package not available yet. See #424 --- .github/workflows/packages.yml | 4 +++- .github/workflows/tests.yml | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 31f774da9..fcef42550 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d8014fb33..642a5f085 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 }} -- 2.47.2