Skip to content

Commit

Permalink
replace sasl -> sasl3 (v0.6.7)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Jun 11, 2021
1 parent 80d851b commit a02428f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyhive/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import absolute_import
from __future__ import unicode_literals
__version__ = '0.6.6'
__version__ = '0.6.7'
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ def run_tests(self):
extras_require={
'presto': ['requests>=1.0.0'],
'trino': ['requests>=1.0.0'],
'hive': ['sasl>=0.2.1', 'thrift>=0.10.0', 'thrift_sasl>=0.1.0'],
# We use sasl3 as a drop-in replacement for sasl, since it resolves a couple
# build issues that sasl has, especially on MacOS systems.
'hive': ['sasl3>=0.2.11', 'thrift>=0.10.0', 'thrift_sasl>=0.1.0'],
'sqlalchemy': ['sqlalchemy>=1.3.0'],
'kerberos': ['requests_kerberos>=0.12.0'],
},
Expand All @@ -55,7 +57,7 @@ def run_tests(self):
'pytest-cov',
'requests>=1.0.0',
'requests_kerberos>=0.12.0',
'sasl>=0.2.1',
'sasl3>=0.2.11',
'sqlalchemy>=1.3.0',
'thrift>=0.10.0',
],
Expand Down

0 comments on commit a02428f

Please sign in to comment.