Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(ingest/hive): Update thrift pin #8964

Merged
merged 5 commits into from
Nov 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,10 @@
# - 0.6.14 uses pure-sasl instead of sasl so it builds on Python 3.11
"acryl-pyhive[hive_pure_sasl]==0.6.14",
# As per https://github.com/datahub-project/datahub/issues/8405
# and https://github.com/dropbox/PyHive/issues/417, new versions
# of thrift break PyHive's hive+http transport.
"thrift<0.14.0",
# and https://github.com/dropbox/PyHive/issues/417, version 0.15.0
hsheth2 marked this conversation as resolved.
Show resolved Hide resolved
# of thrift broke PyHive's hive+http transport.
# Fixed by https://github.com/apache/thrift/pull/2491 in version 0.17.0.
"thrift>=0.17.0",
}

microsoft_common = {"msal==1.22.0"}
Expand Down
Loading