Build binary packages against PosgtgreSQL 14.1 lipq

Close #1388.
This commit is contained in:
Daniele Varrazzo 2021-11-11 20:14:04 +01:00
parent 7dd193a7f7
commit 898cbff5a6
6 changed files with 14 additions and 9 deletions

View File

@ -24,8 +24,8 @@ environment:
WORKFLOW: packages
OPENSSL_VERSION: "1_1_1k"
POSTGRES_VERSION: "13_3"
OPENSSL_VERSION: "1_1_1l"
POSTGRES_VERSION: "14_1"
PSYCOPG2_TESTDB: psycopg2_test
PSYCOPG2_TESTDB_USER: postgres

View File

@ -19,8 +19,8 @@ environment:
WORKFLOW: tests
OPENSSL_VERSION: "1_1_1k"
POSTGRES_VERSION: "13_3"
OPENSSL_VERSION: "1_1_1l"
POSTGRES_VERSION: "14_1"
PSYCOPG2_TESTDB: psycopg2_test
PSYCOPG2_TESTDB_USER: postgres

2
NEWS
View File

@ -7,6 +7,8 @@ What's new in psycopg 2.9.2
- Raise `ValueError` for dates >= Y10k (:ticket:`#1307`).
- `~psycopg2.errorcodes` map and `~psycopg2.errors` classes updated to
PostgreSQL 14.
- Wheel package compiled against OpenSSL 1.1.1l and PostgreSQL 14.1
(:ticket:`#1388`).
What's new in psycopg 2.9.1

View File

@ -9,10 +9,10 @@ To invalidate the cache, update this file and check it into git.
Currently used modules built in the cache:
OpenSSL
Version: 1.1.1k
Version: 1.1.1l
PostgreSQL
Version: 13.3
Version: 14.1
NOTE: to zap the cache manually you can also use:

View File

@ -5,10 +5,10 @@
set -euo pipefail
set -x
openssl_version="1.1.1k"
openssl_version="1.1.1l"
ldap_version="2.4.59"
sasl_version="2.1.27"
postgres_version="13.3"
postgres_version="14.1"
yum install -y zlib-devel krb5-devel pam-devel

View File

@ -11,7 +11,10 @@ set -x
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
prjdir="$( cd "${dir}/../.." && pwd )"
brew install gnu-sed postgresql@13
brew update
brew install gnu-sed postgresql@14
# Fetch 14.1 if 14.0 is still the default version
brew reinstall postgresql
# Start the database for testing
brew services start postgresql