You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by da...@apache.org on 2015/05/23 18:14:29 UTC

spark git commit: Fix install jira-python

Repository: spark
Updated Branches:
  refs/heads/master be47af1bd -> a4df0f2d8


Fix install jira-python

jira-pytyhon package should be installed by

  sudo pip install jira

cc pwendell

Author: Davies Liu <da...@databricks.com>

Closes #6367 from davies/fix_jira_python2 and squashes the following commits:

fbb3c8e [Davies Liu] Fix install jira-python


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a4df0f2d
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a4df0f2d
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a4df0f2d

Branch: refs/heads/master
Commit: a4df0f2d84ff24318b139db534521141d9d4d593
Parents: be47af1
Author: Davies Liu <da...@databricks.com>
Authored: Sat May 23 09:14:07 2015 -0700
Committer: Davies Liu <da...@databricks.com>
Committed: Sat May 23 09:14:07 2015 -0700

----------------------------------------------------------------------
 dev/create-release/releaseutils.py | 2 +-
 dev/github_jira_sync.py            | 2 +-
 dev/merge_spark_pr.py              | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/a4df0f2d/dev/create-release/releaseutils.py
----------------------------------------------------------------------
diff --git a/dev/create-release/releaseutils.py b/dev/create-release/releaseutils.py
index 26221b2..51ab25a 100755
--- a/dev/create-release/releaseutils.py
+++ b/dev/create-release/releaseutils.py
@@ -27,7 +27,7 @@ try:
     from jira.exceptions import JIRAError
 except ImportError:
     print "This tool requires the jira-python library"
-    print "Install using 'sudo pip install jira-python'"
+    print "Install using 'sudo pip install jira'"
     sys.exit(-1)
 
 try:

http://git-wip-us.apache.org/repos/asf/spark/blob/a4df0f2d/dev/github_jira_sync.py
----------------------------------------------------------------------
diff --git a/dev/github_jira_sync.py b/dev/github_jira_sync.py
index ff1e396..287f0ca 100755
--- a/dev/github_jira_sync.py
+++ b/dev/github_jira_sync.py
@@ -28,7 +28,7 @@ try:
     import jira.client
 except ImportError:
     print "This tool requires the jira-python library"
-    print "Install using 'sudo pip install jira-python'"
+    print "Install using 'sudo pip install jira'"
     sys.exit(-1)
 
 # User facing configs

http://git-wip-us.apache.org/repos/asf/spark/blob/a4df0f2d/dev/merge_spark_pr.py
----------------------------------------------------------------------
diff --git a/dev/merge_spark_pr.py b/dev/merge_spark_pr.py
index 1c126f5..787c5cc 100755
--- a/dev/merge_spark_pr.py
+++ b/dev/merge_spark_pr.py
@@ -426,7 +426,7 @@ def main():
             print "JIRA_USERNAME and JIRA_PASSWORD not set"
             print "Exiting without trying to close the associated JIRA."
     else:
-        print "Could not find jira-python library. Run 'sudo pip install jira-python' to install."
+        print "Could not find jira-python library. Run 'sudo pip install jira' to install."
         print "Exiting without trying to close the associated JIRA."
 
 if __name__ == "__main__":


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org