Skip to content

Commit

Permalink
fix(ingest): add trino package max version restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Oct 6, 2022
1 parent 3106e42 commit f5916f2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,9 @@ def get_long_description():
}

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"}
Expand Down

0 comments on commit f5916f2

Please sign in to comment.