Skip to content

Commit

Permalink
build: build manylinux2014 packages
Browse files Browse the repository at this point in the history
manylinux_2_24 is soon EOL and 2_28 will be incompatible with many
distributions to come. See <pypa/manylinux#1332>.

Close #124
  • Loading branch information
dvarrazzo committed Jun 14, 2022
1 parent 6a335d9 commit 9ecf682
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ecf682

Please sign in to comment.