From c1b39d22fff8bfd0fe599103996881cc1dc0ca66 Mon Sep 17 00:00:00 2001 From: Giuseppe Lumia Date: Sat, 23 Jan 2021 17:24:55 +0100 Subject: [PATCH] Set upper bound to pg8000 version pg8000 1.16.6 introduced a change that broke compatibility with sqlalchemy < 1.14.0 (check the related issue for more details). Fixes: #5645 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 891dcbf77c..1fdc91f120 100644 --- a/setup.py +++ b/setup.py @@ -192,7 +192,7 @@ def run_setup(with_cext): ], "postgresql": ["psycopg2"], "postgresql_psycopg2binary": ["psycopg2-binary"], - "postgresql_pg8000": ["pg8000"], + "postgresql_pg8000": ["pg8000<1.16.6"], "postgresql_psycopg2cffi": ["psycopg2cffi"], "oracle": ["cx_oracle"], "mssql_pyodbc": ["pyodbc"], -- 2.47.3