This is an automated email from the ASF dual-hosted git repository.
wesm 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 a18f362 ARROW-2922: [Release] Make python command name customizable
a18f362 is described below
commit a18f36201e5cd1e6f8bc244a5e755fa54bc9c7b0
Author: Kouhei Sutou <[email protected]>
AuthorDate: Fri Jul 27 11:39:23 2018 -0400
ARROW-2922: [Release] Make python command name customizable
We can use python3 command by "PYTHON=python3 dev/release/00-prepare.sh".
python3 is used for Python 3 on Debian GNU/Linux.
Author: Kouhei Sutou <[email protected]>
Closes #2332 from kou/release-make-python-customizable and squashes the
following commits:
e3fa1f5c <Kouhei Sutou> Make python command name customizable
---
dev/release/update-changelog.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/release/update-changelog.sh b/dev/release/update-changelog.sh
index d47c906..4fda016 100755
--- a/dev/release/update-changelog.sh
+++ b/dev/release/update-changelog.sh
@@ -25,7 +25,7 @@ version=$1
CHANGELOG=$SOURCE_DIR/../../CHANGELOG.md
-python $SOURCE_DIR/changelog.py $version 0 $CHANGELOG
+${PYTHON:-python} $SOURCE_DIR/changelog.py $version 0 $CHANGELOG
git add $CHANGELOG
git commit -m "[Release] Update CHANGELOG.md for $version"