diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 39751032..bc90d96b 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -59,8 +59,8 @@ jobs: include: - {tag: manylinux2014, arch: x86_64} - {tag: manylinux2014, arch: i686} - - {tag: manylinux_2_24, arch: aarch64} - - {tag: manylinux_2_24, arch: ppc64le} + - {tag: manylinux_2_28, arch: aarch64} + - {tag: manylinux_2_28, arch: ppc64le} - {tag: musllinux_1_1, arch: x86_64} - {tag: musllinux_1_1, arch: i686} - {tag: musllinux_1_1, arch: aarch64} diff --git a/scripts/build/build_manylinux_2_24.sh b/scripts/build/build_manylinux_2_28.sh similarity index 95% rename from scripts/build/build_manylinux_2_24.sh rename to scripts/build/build_manylinux_2_28.sh index 742014ad..404e43b2 100755 --- a/scripts/build/build_manylinux_2_24.sh +++ b/scripts/build/build_manylinux_2_28.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Create manylinux_2_24 wheels for psycopg2 +# Create manylinux_2_28 wheels for psycopg2 # # Look at the .github/workflows/packages.yml file for hints about how to use it. @@ -28,7 +28,7 @@ fi # Install prerequisite libraries curl -k -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - -echo "deb http://apt.postgresql.org/pub/repos/apt stretch-pgdg main" \ +echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" \ > /etc/apt/sources.list.d/pgdg.list apt-get -y update apt-get install -y libpq-dev