From 60aab09c870851a21b1c6bda63d2108b7df36085 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 25 May 2023 01:14:09 +0200 Subject: [PATCH] ci: set up test grid to test Python 3.12 --- .github/workflows/tests.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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"} -- 2.47.2