From: Giuseppe Lumia Date: Sat, 23 Jan 2021 16:24:55 +0000 (+0100) Subject: Set upper bound to pg8000 version X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1b39d22fff8bfd0fe599103996881cc1dc0ca66;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- 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"],