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 70c48b1 ARROW-8465: [Packaging][Python] Windows py35 wheel build
fails because of boost
70c48b1 is described below
commit 70c48b1c626e397c58447a35ab8175ea95a228fd
Author: Krisztián Szűcs <[email protected]>
AuthorDate: Wed Apr 15 02:52:19 2020 +0200
ARROW-8465: [Packaging][Python] Windows py35 wheel build fails because of
boost
Use boost from conda.
Closes #6941 from kszucs/winpy35wheel
Authored-by: Krisztián Szűcs <[email protected]>
Signed-off-by: Krisztián Szűcs <[email protected]>
---
dev/tasks/python-wheels/win-build-3.5.bat | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev/tasks/python-wheels/win-build-3.5.bat
b/dev/tasks/python-wheels/win-build-3.5.bat
index 556cd29..72e8e0d 100644
--- a/dev/tasks/python-wheels/win-build-3.5.bat
+++ b/dev/tasks/python-wheels/win-build-3.5.bat
@@ -21,7 +21,8 @@
conda update --yes --quiet conda
conda create -n wheel-build -q -y -c conda-forge ^
- python=3.5 ^
+ "boost-cpp>=1.68.0" ^
+ "python=3.5" ^
zlib || exit /B
call conda.bat activate wheel-build
@@ -44,6 +45,7 @@ cmake -G "%GENERATOR%" ^
-DCMAKE_BUILD_TYPE=Release ^
-DARROW_DEPENDENCY_SOURCE=BUNDLED ^
-DZLIB_SOURCE=SYSTEM ^
+ -DBOOST_SOURCE=SYSTEM ^
-DZLIB_ROOT=%CONDA_PREFIX%\Library ^
-DARROW_CXXFLAGS="/MP" ^
-DARROW_WITH_ZLIB=ON ^