From: Denis Laxalde Date: Fri, 1 Oct 2021 14:43:17 +0000 (+0200) Subject: Use now available "postgres:14" Docker image in CI X-Git-Tag: 3.0~40^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eee1330dfc3e246a1b39344cb4b899e70238b187;p=thirdparty%2Fpsycopg.git Use now available "postgres:14" Docker image in CI --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 804c9dbbe..2d1f4d7d0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,9 +18,9 @@ jobs: - {impl: python, python: "3.7", postgres: "postgres:11", libpq: null} - {impl: python, python: "3.8", postgres: "postgres:12", libpq: null} # Don't test two experimental things together - - {impl: python, python: "3.9", postgres: "postgres:14rc1", libpq: "14"} + - {impl: python, python: "3.9", postgres: "postgres:14", libpq: "14"} - {impl: python, python: "3.10", postgres: "postgres:13", libpq: null} - - {impl: c, python: "3.6", postgres: "postgres:14rc1", libpq: null} + - {impl: c, python: "3.6", postgres: "postgres:14", libpq: null} - {impl: c, python: "3.7", postgres: "postgres:13", libpq: "14"} - {impl: c, python: "3.8", postgres: "postgres:12", libpq: "14"} - {impl: c, python: "3.9", postgres: "postgres:11", libpq: "14"}