You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/06/09 09:04:29 UTC

[airflow] 16/36: Adds hive as extra in pyhive (#9075)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 374a3e89ac160b1494bfaa13508f6e833da41e9e
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Sat May 30 20:59:04 2020 +0200

    Adds hive as extra in pyhive (#9075)
    
    Seems that apache hive needs to install [hive] extra of pyhive
    in order to be usable ¯\_(ツ)_/¯.
    
    Fixes: #8933
    (cherry picked from commit db4297406d82406d52510ce8e5376b07b037db15)
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 9166279..5b279f0 100644
--- a/setup.py
+++ b/setup.py
@@ -279,7 +279,7 @@ hdfs = [
 ]
 hive = [
     'hmsclient>=0.1.0',
-    'pyhive>=0.6.0',
+    'pyhive[hive]>=0.6.0',
 ]
 jdbc = [
     'JPype1==0.7.1',