fix(ingest): trino - add trino package max version restriction (#6137)

This commit is contained in:
Harshal Sheth 2022-10-06 20:30:28 +00:00 committed by GitHub
parent 11092c73cf
commit 3f84a2050a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -164,8 +164,9 @@ snowflake_common = {
}
trino = {
"trino>=0.308",
"trino[sqlalchemy]>=0.308",
# The upper bound was added because of a breaking change in the Trino dialect.
# See https://github.com/trinodb/trino-python-client/issues/250.
"trino[sqlalchemy]>=0.308, <0.317",
}
microsoft_common = {"msal==1.16.0"}