From: Daniele Varrazzo Date: Mon, 13 Jun 2022 00:04:59 +0000 (+0200) Subject: build: build manylinux2014 packages X-Git-Tag: 3.0.15~1^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ecf68208b8c608c05b4069334dbc898e65d783e;p=thirdparty%2Fpsycopg.git build: build manylinux2014 packages manylinux_2_24 is soon EOL and 2_28 will be incompatible with many distributions to come. See . Close #124 --- diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 316887c9b..cfde090e2 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -99,10 +99,10 @@ jobs: with: package-dir: psycopg_binary env: - CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24 - CIBW_MANYLINUX_I686_IMAGE: manylinux_2_24 - CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_24 - CIBW_MANYLINUX_PPC64LE_IMAGE: manylinux_2_24 + CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 + CIBW_MANYLINUX_I686_IMAGE: manylinux2014 + CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014 + CIBW_MANYLINUX_PPC64LE_IMAGE: manylinux2014 CIBW_BUILD: ${{matrix.pyver}}-${{matrix.platform}}_${{matrix.arch}} CIBW_ARCHS_LINUX: auto aarch64 ppc64le CIBW_BEFORE_ALL_LINUX: ./tools/build/wheel_linux_before_all.sh diff --git a/docs/news.rst b/docs/news.rst index 8ca2802a7..6f53b88f4 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -18,6 +18,7 @@ Psycopg 3.0.15 (unreleased) - Restore the connection to usable state after an error in `~Cursor.stream()`. - Raise `DataError` instead of `OverflowError` loading binary intervals out-of-range. +- Distribute ``manylinux2014`` wheel packages (:ticket:`#124`). Current release