From 22e8bb96fd26e6f721a753897c89d167912991fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabr=C3=ADzio=20de=20Royes=20Mello?= Date: Wed, 13 Nov 2024 10:15:14 -0300 Subject: [PATCH] Bump PG versions used in CI * 14.15 * 15.10 * 16.6 * 17.2 --- .github/ci_settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ci_settings.py b/.github/ci_settings.py index 4eb09a515ae..829ba4d6b87 100644 --- a/.github/ci_settings.py +++ b/.github/ci_settings.py @@ -12,19 +12,19 @@ # PG14_EARLIEST = "14.0" -PG14_LATEST = "14.13" +PG14_LATEST = "14.15" PG14_ABI_MIN = "14.0" PG15_EARLIEST = "15.0" -PG15_LATEST = "15.8" +PG15_LATEST = "15.10" PG15_ABI_MIN = "15.0" PG16_EARLIEST = "16.0" -PG16_LATEST = "16.4" +PG16_LATEST = "16.6" PG16_ABI_MIN = "16.0" PG17_EARLIEST = "17.0" -PG17_LATEST = "17.0" +PG17_LATEST = "17.2" PG17_ABI_MIN = "17.0" PG_LATEST = [PG14_LATEST, PG15_LATEST, PG16_LATEST, PG17_LATEST]