Skip to content

Commit

Permalink
Build binary packages against PosgtgreSQL 14.1 lipq
Browse files Browse the repository at this point in the history
Close #1388.
  • Loading branch information
dvarrazzo committed Nov 11, 2021
1 parent 7dd193a commit 898cbff
Showing 6 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .appveyor/packages.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions .appveyor/tests.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions scripts/build/appveyor.cache_rebuild
Original file line number Diff line number Diff line change
@@ -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:
4 changes: 2 additions & 2 deletions scripts/build/build_libpq.sh
Original file line number Diff line number Diff line change
@@ -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

5 changes: 4 additions & 1 deletion scripts/build/build_macos.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 898cbff

Please sign in to comment.