From 8277cb1b8f70bffc77c61da1b25776136ed99dd2 Mon Sep 17 00:00:00 2001 From: kesem0811 <60566128+kesem0811@users.noreply.github.com> Date: Wed, 17 Sep 2025 16:49:34 +0300 Subject: [PATCH] Update setup.py in order to make PyHive work with pure-sasl and kerberos authentication we need to install pure-sass[GSSAPI] do this now will never work --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d141ea1b..53b4160e 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def run_tests(self): 'presto': ['requests>=1.0.0'], 'trino': ['requests>=1.0.0'], 'hive': ['sasl>=0.2.1', 'thrift>=0.10.0', 'thrift_sasl>=0.1.0'], - 'hive_pure_sasl': ['pure-sasl>=0.6.2', 'thrift>=0.10.0', 'thrift_sasl>=0.1.0'], + 'hive_pure_sasl': ['pure-sasl[GSSAPI]>=0.6.2', 'thrift>=0.10.0', 'thrift_sasl>=0.1.0'], 'sqlalchemy': ['sqlalchemy>=1.3.0'], 'kerberos': ['requests_kerberos>=0.12.0'], },