From e3040a99e4bfcb65d1c7cc10266aea9f2d227342 Mon Sep 17 00:00:00 2001 From: Wes McKinney Date: Wed, 21 Feb 2018 12:49:37 -0500 Subject: [PATCH] Do not install PyTorch in Travis CI Change-Id: I7a2ba5fdad4c4a6cc77ee3507280a304aca39684 --- ci/travis_script_python.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/ci/travis_script_python.sh b/ci/travis_script_python.sh index a487da596bd..9ed5825bb8f 100755 --- a/ci/travis_script_python.sh +++ b/ci/travis_script_python.sh @@ -43,11 +43,14 @@ conda install -y -q pip \ pandas \ cython -if [ "$PYTHON_VERSION" != "2.7" ] || [ $TRAVIS_OS_NAME != "osx" ]; then - # Install pytorch for torch tensor conversion tests - # PyTorch seems to be broken on Python 2.7 on macOS so we skip it - conda install -y -q pytorch torchvision -c soumith -fi +# ARROW-2093: PyTorch increases the size of our conda dependency stack +# significantly, and so we have disabled these tests in Travis CI for now + +# if [ "$PYTHON_VERSION" != "2.7" ] || [ $TRAVIS_OS_NAME != "osx" ]; then +# # Install pytorch for torch tensor conversion tests +# # PyTorch seems to be broken on Python 2.7 on macOS so we skip it +# conda install -y -q pytorch torchvision -c soumith +# fi # Build C++ libraries mkdir -p $ARROW_CPP_BUILD_DIR