From: Daniele Varrazzo Date: Tue, 3 Oct 2023 11:26:16 +0000 (+0200) Subject: ci: add PostgreSQL 16 to the test grid X-Git-Tag: pool-3.2.0~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b974268ffcfa0beb552a573c9081c92ac905c88c;p=thirdparty%2Fpsycopg.git ci: add PostgreSQL 16 to the test grid --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f5fe36ff5..c89ff1f24 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,18 +26,18 @@ jobs: matrix: include: # Test different combinations of Python, Postgres, libpq. - - {impl: python, python: "3.7", postgres: "postgres:10", libpq: newest} - - {impl: python, python: "3.8", postgres: "postgres:11"} - - {impl: python, python: "3.9", postgres: "postgres:12"} - - {impl: python, python: "3.10", postgres: "postgres:13"} - - {impl: python, python: "3.11", postgres: "postgres:14", libpq: master} - - {impl: python, python: "3.12", postgres: "postgres:15", libpq: oldest} - - - {impl: c, python: "3.7", postgres: "postgres:15", libpq: newest} - - {impl: c, python: "3.8", postgres: "postgres:13", libpq: master} - - {impl: c, python: "3.9", postgres: "postgres:14"} - - {impl: c, python: "3.10", postgres: "postgres:12"} - - {impl: c, python: "3.11", postgres: "postgres:11", libpq: oldest} + - {impl: python, python: "3.7", postgres: "postgres:11", libpq: newest} + - {impl: python, python: "3.8", postgres: "postgres:10"} + - {impl: python, python: "3.9", postgres: "postgres:13"} + - {impl: python, python: "3.10", postgres: "postgres:14"} + - {impl: python, python: "3.11", postgres: "postgres:15", libpq: master} + - {impl: python, python: "3.12", postgres: "postgres:16", libpq: oldest} + + - {impl: c, python: "3.7", postgres: "postgres:16", libpq: newest} + - {impl: c, python: "3.8", postgres: "postgres:14", libpq: master} + - {impl: c, python: "3.9", postgres: "postgres:15"} + - {impl: c, python: "3.10", postgres: "postgres:13"} + - {impl: c, python: "3.11", postgres: "postgres:12", libpq: oldest} - {impl: c, python: "3.12", postgres: "postgres:10", libpq: newest} - {impl: python, python: "3.9", ext: dns, postgres: "postgres:14"} diff --git a/docs/basic/install.rst b/docs/basic/install.rst index 8f28b9e65..120c08f4a 100644 --- a/docs/basic/install.rst +++ b/docs/basic/install.rst @@ -23,7 +23,7 @@ The Psycopg version documented here has *official and tested* support for: - Python 3.6 supported before Psycopg 3.1 -- PostgreSQL: from version 10 to 15 +- PostgreSQL: from version 10 to 16 - OS: Linux, macOS, Windows The tests to verify the supported systems run in `Github workflows`__: