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 26aad5d ARROW-10323: [Release][wheel] Add missing verification setup
step
26aad5d is described below
commit 26aad5dc2281b19ad1198a8bcdb46cefad8cd386
Author: Sutou Kouhei <[email protected]>
AuthorDate: Mon Oct 19 10:35:33 2020 +0900
ARROW-10323: [Release][wheel] Add missing verification setup step
Closes #8477 from kou/release-wheel-verify-add-missing-symlink
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
dev/release/verify-release-candidate.sh | 2 ++
python/pyarrow/__init__.py | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index e0f5f0e..0cb9e1b 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -650,6 +650,7 @@ test_linux_wheels() {
# install test requirements and execute the tests
pip install -r ${ARROW_DIR}/python/requirements-test.txt
+ python -c 'import pyarrow; pyarrow.create_library_symlinks()'
pytest --pyargs pyarrow
done
@@ -672,6 +673,7 @@ test_macos_wheels() {
# install test requirements and execute the tests
pip install -r ${ARROW_DIR}/python/requirements-test.txt
+ python -c 'import pyarrow; pyarrow.create_library_symlinks()'
pytest --pyargs pyarrow
conda deactivate
diff --git a/python/pyarrow/__init__.py b/python/pyarrow/__init__.py
index 1dd209a..fd09e09 100644
--- a/python/pyarrow/__init__.py
+++ b/python/pyarrow/__init__.py
@@ -445,7 +445,7 @@ def create_library_symlinks():
except PermissionError:
print("Tried creating symlink {}. If you need to link to "
"bundled shared libraries, run "
- "pyarrow._setup_bundled_symlinks() as root")
+ "pyarrow.create_library_symlinks() as root")
def get_library_dirs():