mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-07-01 02:03:05 +03:00
chore: bundle libpq 17
This commit is contained in:
parent
5509e01108
commit
cbc567bc9c
4
.github/workflows/packages.yml
vendored
4
.github/workflows/packages.yml
vendored
|
@ -5,7 +5,7 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PIP_BREAK_SYSTEM_PACKAGES: "1"
|
PIP_BREAK_SYSTEM_PACKAGES: "1"
|
||||||
LIBPQ_VERSION: "16.0"
|
LIBPQ_VERSION: "17.4"
|
||||||
OPENSSL_VERSION: "1.1.1w"
|
OPENSSL_VERSION: "1.1.1w"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -163,7 +163,7 @@ jobs:
|
||||||
export PYTHONPATH={project} &&
|
export PYTHONPATH={project} &&
|
||||||
python -c "import tests; tests.unittest.main(defaultTest='tests.test_suite')"
|
python -c "import tests; tests.unittest.main(defaultTest='tests.test_suite')"
|
||||||
CIBW_ENVIRONMENT: >-
|
CIBW_ENVIRONMENT: >-
|
||||||
PG_VERSION=16
|
PG_VERSION=17
|
||||||
PACKAGE_NAME=psycopg2-binary
|
PACKAGE_NAME=psycopg2-binary
|
||||||
PSYCOPG2_TESTDB=postgres
|
PSYCOPG2_TESTDB=postgres
|
||||||
PATH="/tmp/libpq.build/bin:$PATH"
|
PATH="/tmp/libpq.build/bin:$PATH"
|
||||||
|
|
7
NEWS
7
NEWS
|
@ -1,6 +1,13 @@
|
||||||
Current release
|
Current release
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
What's new in psycopg 2.9.11
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
- Wheel package bundled with PostgreSQL 17 libpq in order to add support for
|
||||||
|
recent changes, such as ``daticulocale`` being renamed to ``datlocale``.
|
||||||
|
|
||||||
|
|
||||||
What's new in psycopg 2.9.10
|
What's new in psycopg 2.9.10
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ openssl_version="${OPENSSL_VERSION}"
|
||||||
krb5_version="1.21.3"
|
krb5_version="1.21.3"
|
||||||
|
|
||||||
# last release: https://openldap.org/software/download/
|
# last release: https://openldap.org/software/download/
|
||||||
ldap_version="2.6.8"
|
ldap_version="2.6.9"
|
||||||
|
|
||||||
# last release: https://github.com/cyrusimap/cyrus-sasl/releases
|
# last release: https://github.com/cyrusimap/cyrus-sasl/releases
|
||||||
sasl_version="2.1.28"
|
sasl_version="2.1.28"
|
||||||
|
|
|
@ -11,7 +11,7 @@ set -euo pipefail
|
||||||
# set -x
|
# set -x
|
||||||
|
|
||||||
python_versions="3.8.18 3.9.18 3.10.13 3.11.6 3.12.0"
|
python_versions="3.8.18 3.9.18 3.10.13 3.11.6 3.12.0"
|
||||||
pg_version=16
|
pg_version=17
|
||||||
|
|
||||||
function log {
|
function log {
|
||||||
echo "$@" >&2
|
echo "$@" >&2
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# Configure the environment needed to build wheel packages on Mac OS.
|
# Configure the environment needed to build wheel packages on Mac OS.
|
||||||
# This script is designed to be used by cibuildwheel as CIBW_BEFORE_ALL_MACOS
|
# This script is designed to be used by cibuildwheel as CIBW_BEFORE_ALL_MACOS
|
||||||
#
|
#
|
||||||
# The PG_VERSION env var must be set to a Postgres major version (e.g. 16).
|
# The PG_VERSION env var must be set to a Postgres major version (e.g. 17).
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
set -x
|
set -x
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -40,7 +40,7 @@ import configparser
|
||||||
# Take a look at https://www.python.org/dev/peps/pep-0440/
|
# Take a look at https://www.python.org/dev/peps/pep-0440/
|
||||||
# for a consistent versioning pattern.
|
# for a consistent versioning pattern.
|
||||||
|
|
||||||
PSYCOPG_VERSION = '2.9.10'
|
PSYCOPG_VERSION = '2.9.11'
|
||||||
|
|
||||||
|
|
||||||
# note: if you are changing the list of supported Python version please fix
|
# note: if you are changing the list of supported Python version please fix
|
||||||
|
|
Loading…
Reference in New Issue
Block a user