mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
parent
7dd193a7f7
commit
898cbff5a6
|
@ -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
|
||||
|
|
|
@ -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
2
NEWS
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user