From 57f0f7dba75386c5e87b610d80ad293efeeb19c6 Mon Sep 17 00:00:00 2001 From: Andrew Sikowitz Date: Thu, 5 Oct 2023 15:02:45 -0400 Subject: [PATCH] build(ingest/hive): Update thrift pin --- metadata-ingestion/setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index fe8e3be4632c4..6727737abf6aa 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -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 + # 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"}