You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2019/07/12 02:01:45 UTC

[arrow] branch master updated: ARROW-5899: [Python][Packaging] Build and link uriparser statically in Windows wheel builds

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 4221db9  ARROW-5899: [Python][Packaging] Build and link uriparser statically in Windows wheel builds
4221db9 is described below

commit 4221db9ac7e92a00eae2bd69929e2ac88118c820
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Thu Jul 11 21:01:37 2019 -0500

    ARROW-5899: [Python][Packaging] Build and link uriparser statically in Windows wheel builds
    
    The windows nightly wheel builds are failing: https://ci.appveyor.com/project/Ursa-Labs/crossbow/builds/25688922 probably caused by https://github.com/apache/arrow/commit/88fcb096c4f24861bc7f8181cba1ad8be0e4048a, but it's hard to tell because of the error message  "ImportError: DLL load failed: The specified module could not be found." is not very descriptive.
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    
    Closes #4833 from kszucs/win-wheel-uriparser and squashes the following commits:
    
    52616ecc0 <Krisztián Szűcs> missed from the previous commit
    19fca6305 <Krisztián Szűcs> bundled uriparser
    a4ff13a57 <Krisztián Szűcs> cmake
    6b8733352 <Krisztián Szűcs> bundle uriparser.dll in windows wheels
---
 dev/tasks/python-wheels/win-build.bat | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/tasks/python-wheels/win-build.bat b/dev/tasks/python-wheels/win-build.bat
index 56b0097..f5caac0 100644
--- a/dev/tasks/python-wheels/win-build.bat
+++ b/dev/tasks/python-wheels/win-build.bat
@@ -53,6 +53,7 @@ cmake -G "%GENERATOR%" ^
       -DARROW_PYTHON=ON ^
       -DARROW_PARQUET=ON ^
       -DARROW_GANDIVA=ON ^
+      -Duriparser_SOURCE=BUNDLED ^
       .. || exit /B
 cmake --build . --target install --config Release || exit /B
 popd