]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
ci: build packages for Python 3.11 too
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Thu, 8 Sep 2022 13:00:59 +0000 (14:00 +0100)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 25 Oct 2022 12:35:49 +0000 (14:35 +0200)
.github/workflows/packages.yml
tools/build/build_macos_arm64.sh

index e00b382e5447f7ae4e0bd05cc83ebcf5bc91dac6..31f774da965c3a28560e981d67c61d6e5acb6512 100644 (file)
@@ -88,7 +88,7 @@ jobs:
       fail-fast: false
       matrix:
         arch: [x86_64, i686, ppc64le, aarch64]
-        pyver: [cp37, cp38, cp39, cp310]
+        pyver: [cp37, cp38, cp39, cp310, cp311]
         platform: [manylinux, musllinux]
 
     steps:
@@ -112,7 +112,7 @@ jobs:
         run: python3 ./tools/build/copy_to_binary.py
 
       - name: Build wheels
-        uses: pypa/cibuildwheel@v2.6.1
+        uses: pypa/cibuildwheel@v2.9.0
         with:
           package-dir: psycopg_binary
         env:
@@ -169,7 +169,7 @@ jobs:
       matrix:
         # These archs require an Apple M1 runner: [arm64, universal2]
         arch: [x86_64]
-        pyver: [cp37, cp38, cp39, cp310]
+        pyver: [cp37, cp38, cp39, cp310, cp311]
 
     steps:
       - uses: actions/checkout@v3
@@ -178,7 +178,7 @@ jobs:
         run: python3 ./tools/build/copy_to_binary.py
 
       - name: Build wheels
-        uses: pypa/cibuildwheel@v2.6.1
+        uses: pypa/cibuildwheel@v2.9.0
         with:
           package-dir: psycopg_binary
         env:
@@ -209,7 +209,7 @@ jobs:
       matrix:
         # Might want to add win32, untested at the moment.
         arch: [win_amd64]
-        pyver: [cp37, cp38, cp39, cp310]
+        pyver: [cp37, cp38, cp39, cp310, cp311]
 
     steps:
       - uses: actions/checkout@v3
@@ -224,7 +224,7 @@ jobs:
         run: python3 ./tools/build/copy_to_binary.py
 
       - name: Build wheels
-        uses: pypa/cibuildwheel@v2.6.1
+        uses: pypa/cibuildwheel@v2.9.0
         with:
           package-dir: psycopg_binary
         env:
index 7a9945b3d65366dcb6f93399e03aeea0259328c2..c318e07946e42fddd5c40cdd8f7df4475faa2ce8 100755 (executable)
@@ -10,7 +10,7 @@
 set -euo pipefail
 set -x
 
-python_versions="3.8.10 3.9.13 3.10.5"
+python_versions="3.8.10 3.9.13 3.10.5 3.11.0"
 postgres_version=14
 
 # Move to the root of the project