Skip to content

Commit 49cca48

Browse files
committed
chore: update libpq version to 17.6 and clear PQ_FLAGS in workflows
1 parent 934ca05 commit 49cca48

File tree

2 files changed

+4
-23
lines changed

2 files changed

+4
-23
lines changed

.github/workflows/build-and-cache-libpq.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,9 @@ on:
4141
# across workflows.
4242

4343
env:
44-
# Latest release: https://www.postgresql.org/ftp/source/
45-
LIBPQ_VERSION: "18.0"
46-
# Note: On windows the latest version can be found at
47-
# https://vcpkg.io/en/package/libpq
48-
# However the command line tool doesn't have a flag to specify to install
49-
# a specific version, so whatever you get you keep it.
50-
# https://github.com/microsoft/vcpkg/discussions/25622
51-
52-
# Latest release: https://www.openssl.org/source/
44+
LIBPQ_VERSION: "17.6"
5345
OPENSSL_VERSION: "3.5.4"
54-
55-
# A string to differentiate build cacke keys to allow building different
56-
# flavours of libpq in different branches without mixups. Currently used to
57-
# make sure that libpq packages built for Psycopg 3.2 and 3.3 don't mix (in
58-
# order to change the gssencmode default only on 3.3). We may use it for
59-
# different reasons in the future.
60-
PQ_FLAGS: "-gssencmode-disable"
46+
PQ_FLAGS: ""
6147

6248
concurrency:
6349
# Cancel older requests of the same workflow in the same branch.
@@ -98,7 +84,7 @@ jobs:
9884
CIBW_SKIP: "cp31?t-*"
9985
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
10086
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
101-
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
87+
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
10288
CIBW_MANYLINUX_PPC64LE_IMAGE: manylinux2014
10389
CIBW_MANYLINUX_RISCV64_IMAGE: quay.io/pypa/manylinux_2_39_riscv64
10490
CIBW_BUILD: cp313-${{matrix.platform}}_${{matrix.arch}}

.github/workflows/packages.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,7 @@ env:
1515
PIP_BREAK_SYSTEM_PACKAGES: "1"
1616
LIBPQ_VERSION: "17.6"
1717
OPENSSL_VERSION: "3.5.4"
18-
# A string to differentiate build cache keys to allow building different
19-
# flavours of libpq in different branches without mixups. Currently used to
20-
# make sure that libpq packages built for Psycopg 3.2 and 3.3 don't mix (in
21-
# order to change the gssencmode default only on 3.3). We may use it for
22-
# different reasons in the future.
23-
PQ_FLAGS: "-gssencmode-disable"
18+
PQ_FLAGS: ""
2419

2520
jobs:
2621
sdist: # {{{

0 commit comments

Comments
 (0)