From 2808122de570bda4cf65b59721897e7f41c7c024 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Thu, 13 Oct 2022 18:43:41 -0700 Subject: [PATCH] update trino version bound --- metadata-ingestion/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index 7065b5bfeb75ae..7c3084a6052efb 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -164,9 +164,9 @@ def get_long_description(): } trino = { - # The upper bound was added because of a breaking change in the Trino dialect. + # Trino 0.317 broke compatibility with SQLAlchemy 1.3.24. # See https://github.com/trinodb/trino-python-client/issues/250. - "trino[sqlalchemy]>=0.308, <0.317", + "trino[sqlalchemy]>=0.308, !=0.317", } microsoft_common = {"msal==1.16.0"}