This is an automated email from the ASF dual-hosted git repository.
kszucs 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 0158ae1 ARROW-6446: [OSX][Python][Wheel] Turn off ORC feature in the
wheel building scripts
0158ae1 is described below
commit 0158ae17c705ac4a3ee40fc9e096e0bf6032b49d
Author: Krisztián Szűcs <[email protected]>
AuthorDate: Sun Sep 8 10:26:54 2019 +0200
ARROW-6446: [OSX][Python][Wheel] Turn off ORC feature in the wheel building
scripts
Closes #5291 from kszucs/osx-wheel and squashes the following commits:
f4162012e <Krisztián Szűcs> no orc
Authored-by: Krisztián Szűcs <[email protected]>
Signed-off-by: Krisztián Szűcs <[email protected]>
---
dev/tasks/python-wheels/osx-build.sh | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dev/tasks/python-wheels/osx-build.sh
b/dev/tasks/python-wheels/osx-build.sh
index 3dd3ccb..fbd8388 100755
--- a/dev/tasks/python-wheels/osx-build.sh
+++ b/dev/tasks/python-wheels/osx-build.sh
@@ -131,7 +131,7 @@ function build_wheel {
-DARROW_PYTHON=ON \
-DARROW_PARQUET=ON \
-DARROW_GANDIVA=${BUILD_ARROW_GANDIVA} \
- -DARROW_ORC=ON \
+ -DARROW_ORC=OFF \
-DBOOST_ROOT="$arrow_boost_dist" \
-DBoost_NAMESPACE=arrow_boost \
-DARROW_FLIGHT=ON \
@@ -157,7 +157,7 @@ function build_wheel {
export PYARROW_WITH_FLIGHT=1
export PYARROW_WITH_PLASMA=1
export PYARROW_WITH_PARQUET=1
- export PYARROW_WITH_ORC=1
+ export PYARROW_WITH_ORC=0
export PYARROW_WITH_JEMALLOC=1
export PYARROW_WITH_PLASMA=1
export PYARROW_BUNDLE_BOOST=1
@@ -204,7 +204,6 @@ function run_import_tests {
python -c "
import sys
import pyarrow
-import pyarrow.orc
import pyarrow.parquet
import pyarrow.plasma