Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 508eec5

Browse files
robertnishiharapcmoritz
authored andcommittedAug 13, 2017
Pin cloudpickle version to 0.3 in travis tests. (ray-project#834)
1 parent bfe473f commit 508eec5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎.travis/install-dependencies.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ if [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "linux" ]]; then
2424
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh
2525
bash miniconda.sh -b -p $HOME/miniconda
2626
export PATH="$HOME/miniconda/bin:$PATH"
27-
pip install numpy cloudpickle cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
27+
pip install numpy cloudpickle==0.3.0 cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
2828
elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "linux" ]]; then
2929
sudo apt-get update
3030
sudo apt-get install -y cmake pkg-config python-dev python-numpy build-essential autoconf curl libtool libboost-dev libboost-filesystem-dev libboost-system-dev unzip
3131
# Install miniconda.
3232
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
3333
bash miniconda.sh -b -p $HOME/miniconda
3434
export PATH="$HOME/miniconda/bin:$PATH"
35-
pip install numpy cloudpickle cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
35+
pip install numpy cloudpickle==0.3.0 cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
3636
elif [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "macosx" ]]; then
3737
# check that brew is installed
3838
which -s brew
@@ -48,7 +48,7 @@ elif [[ "$PYTHON" == "2.7" ]] && [[ "$platform" == "macosx" ]]; then
4848
wget https://repo.continuum.io/miniconda/Miniconda2-latest-MacOSX-x86_64.sh -O miniconda.sh
4949
bash miniconda.sh -b -p $HOME/miniconda
5050
export PATH="$HOME/miniconda/bin:$PATH"
51-
pip install numpy cloudpickle cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
51+
pip install numpy cloudpickle==0.3.0 cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
5252
elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "macosx" ]]; then
5353
# check that brew is installed
5454
which -s brew
@@ -64,7 +64,7 @@ elif [[ "$PYTHON" == "3.5" ]] && [[ "$platform" == "macosx" ]]; then
6464
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh
6565
bash miniconda.sh -b -p $HOME/miniconda
6666
export PATH="$HOME/miniconda/bin:$PATH"
67-
pip install numpy cloudpickle cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
67+
pip install numpy cloudpickle==0.3.0 cython cmake funcsigs click colorama psutil redis tensorflow flatbuffers
6868
elif [[ "$LINT" == "1" ]]; then
6969
sudo apt-get update
7070
sudo apt-get install -y cmake build-essential autoconf curl libtool libboost-dev libboost-filesystem-dev libboost-system-dev unzip

0 commit comments

Comments
 (0)
Please sign in to comment.