Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions ci/travis_script_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down