diff --git a/ci/.travis_install.sh b/ci/.travis_install.sh index 48e0f50bb..359e81a2f 100755 --- a/ci/.travis_install.sh +++ b/ci/.travis_install.sh @@ -67,20 +67,20 @@ if [[ "$TENSORFLOW" == "true" ]]; then "linux") case "$PYTHON_VERSION" in "2.7") - pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl + pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl ;; "3.4") - pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl + pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl ;; esac ;; "osx") case "$PYTHON_VERSION" in "2.7") - pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp27-none-any.whl + pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.8.0-py2-none-any.whl ;; "3.5") - pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp35-none-any.whl + pip install --upgrade https://storage.googleapis.com/tensorflow/mac/tensorflow-0.8.0-py3-none-any.whl ;; esac ;;