From: Daniele Varrazzo Date: Tue, 25 Oct 2022 14:39:06 +0000 (+0200) Subject: ci: skip test/build on macOS x86_64 for Python 3.11 X-Git-Tag: 3.1.4~2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2eb3282aa4c2fdc0cfe2c1923fbf58450df2ce7;p=thirdparty%2Fpsycopg.git ci: skip test/build on macOS x86_64 for Python 3.11 Package not available yet. See #424 --- 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 }}