From 33600976b1f2b1c3df7e9fabcad5a2719ad087bf Mon Sep 17 00:00:00 2001 From: Polina Bungina <27892524+hughcapet@users.noreply.github.com> Date: Thu, 20 Feb 2025 13:58:58 +0300 Subject: [PATCH] Re-apply "Enable behave tests with Citus 13 and PostgreSQL 17" (#3285) This reverts commit 3d932e1e73810f7405a9564c2671f27aa6fd99a0. --- .github/workflows/install_deps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/install_deps.py b/.github/workflows/install_deps.py index 033a1b6a..5fd3ae5b 100644 --- a/.github/workflows/install_deps.py +++ b/.github/workflows/install_deps.py @@ -47,8 +47,8 @@ def install_packages(what): packages['exhibitor'] = packages['zookeeper'] packages = packages.get(what, []) ver = versions.get(what) - if 15 <= float(ver) < 17: - packages += ['postgresql-{0}-citus-12.1'.format(ver)] + if 15 <= float(ver) < 18: + packages += ['postgresql-{0}-citus-13.0'.format(ver)] subprocess.call(['sudo', 'apt-get', 'update', '-y']) return subprocess.call(['sudo', 'apt-get', 'install', '-y', 'postgresql-' + ver, 'expect-dev'] + packages)