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 2020/03/10 02:55:37 UTC

[arrow] branch master updated: ARROW-8021: [Python] Install test requirements including pandas in Appveyor

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 aec37d7  ARROW-8021: [Python] Install test requirements including pandas in Appveyor
aec37d7 is described below

commit aec37d768abbee3ea3ce4c32002462ff0e1c3674
Author: Wes McKinney <we...@apache.org>
AuthorDate: Mon Mar 9 21:55:17 2020 -0500

    ARROW-8021: [Python] Install test requirements including pandas in Appveyor
    
    Many unit tests are currently being skipped in Appveyor (presumably these changes will carry over when we migrate these builds to GitHub Actions).
    
    Closes #6555 from wesm/ARROW-8021 and squashes the following commits:
    
    09ca1b5ac <Wes McKinney> call conda...
    b063883b1 <Wes McKinney> Use conda_env_python.yml and install pandas explicitly
    83c6edc75 <Wes McKinney> Be explicit about using conda-forge
    9831f87ea <Wes McKinney> Use conda to install build and test dependencies to avoid ABI conflicts
    8d1adc50c <Wes McKinney> Test with pandas and other optional libraries in Appveyor
    
    Authored-by: Wes McKinney <we...@apache.org>
    Signed-off-by: Wes McKinney <we...@apache.org>
---
 ci/cpp-msvc-build-main.bat | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ci/cpp-msvc-build-main.bat b/ci/cpp-msvc-build-main.bat
index c2d55d2..735073c 100644
--- a/ci/cpp-msvc-build-main.bat
+++ b/ci/cpp-msvc-build-main.bat
@@ -103,7 +103,8 @@ popd
 
 pushd python
 
-pip install -r requirements.txt
+call conda install -y --file=..\ci\conda_env_python.yml ^
+           pandas -c conda-forge
 
 set PYARROW_CXXFLAGS=%ARROW_CXXFLAGS%
 set PYARROW_CMAKE_GENERATOR=%GENERATOR%