From: Daniele Varrazzo Date: Wed, 24 May 2023 23:14:09 +0000 (+0200) Subject: ci: set up test grid to test Python 3.12 X-Git-Tag: 3.1.10~6^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60aab09c870851a21b1c6bda63d2108b7df36085;p=thirdparty%2Fpsycopg.git ci: set up test grid to test Python 3.12 --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7660f4049..4c014b366 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,16 +27,18 @@ jobs: 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:12"} - - {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: oldest} + - {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"} + - {impl: python, python: "3.12.0-alpha - 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"} - {impl: c, python: "3.9", postgres: "postgres:14"} - - {impl: c, python: "3.10", postgres: "postgres:11", libpq: oldest} - - {impl: c, python: "3.11", postgres: "postgres:10", libpq: newest} + - {impl: c, python: "3.10", postgres: "postgres:12"} + - {impl: c, python: "3.11", postgres: "postgres:11", libpq: oldest} + - {impl: c, python: "3.12.0-alpha - 3.12", postgres: "postgres:10", libpq: newest} - {impl: python, python: "3.9", ext: dns, postgres: "postgres:14"} - {impl: python, python: "3.9", ext: postgis, postgres: "postgis/postgis"}