You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/10/03 23:52:33 UTC

[arrow] branch master updated: MINOR: [Dev] Fix typo and improve instructions in merge script (#14297)

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

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 93e6c6e753 MINOR: [Dev] Fix typo and improve instructions in merge script (#14297)
93e6c6e753 is described below

commit 93e6c6e7533d3632cc6e272ba8e9dca0523ebe40
Author: Dominik Moritz <do...@gmail.com>
AuthorDate: Mon Oct 3 19:52:24 2022 -0400

    MINOR: [Dev] Fix typo and improve instructions in merge script (#14297)
    
    I think it's best not to recommend using sudo to install pip dependencies. Also, fixed a typo.
    
    Authored-by: Dominik Moritz <do...@gmail.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/merge_arrow_pr.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/merge_arrow_pr.py b/dev/merge_arrow_pr.py
index a0c1398eb5..2185817955 100755
--- a/dev/merge_arrow_pr.py
+++ b/dev/merge_arrow_pr.py
@@ -54,7 +54,7 @@ try:
     import jira.exceptions
 except ImportError:
     print("Could not find jira library. "
-          "Run 'sudo pip install jira' to install.")
+          "Run 'pip install jira' to install.")
     print("Exiting without trying to close the associated JIRA.")
     sys.exit(1)
 
@@ -116,7 +116,7 @@ def fix_version_from_branch(branch, versions):
         return [x for x in versions if x.name.startswith(branch_ver)][-1]
 
 
-# We can merge both ARROW and PARQUET patchesa
+# We can merge both ARROW and PARQUET patches
 SUPPORTED_PROJECTS = ['ARROW', 'PARQUET']
 PR_TITLE_REGEXEN = [(project, re.compile(r'^(' + project + r'-[0-9]+)\b.*$'))
                     for project in SUPPORTED_PROJECTS]