From 2b674827c30142ea3a2a22a7ab739963f00ed1a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Chollet?= Date: Tue, 24 Jan 2017 09:38:00 -0800 Subject: [PATCH] Update Travis tests to Python 3.5. (#5150) --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 889a44077..15a3db8ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,11 +9,11 @@ matrix: env: KERAS_BACKEND=theano TEST_MODE=INTEGRATION_TESTS - python: 2.7 env: KERAS_BACKEND=tensorflow - - python: 3.4 + - python: 3.5 env: KERAS_BACKEND=tensorflow - python: 2.7 env: KERAS_BACKEND=theano - - python: 3.4 + - python: 3.5 env: KERAS_BACKEND=theano install: # code below is taken from http://conda.pydata.org/docs/travis.html @@ -41,7 +41,7 @@ install: # install PIL for preprocessing tests - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then conda install pil; - elif [[ "$TRAVIS_PYTHON_VERSION" == "3.4" ]]; then + elif [[ "$TRAVIS_PYTHON_VERSION" == "3.5" ]]; then conda install Pillow; fi @@ -50,8 +50,8 @@ install: # install TensorFlow - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.1-cp27-none-linux_x86_64.whl; - elif [[ "$TRAVIS_PYTHON_VERSION" == "3.4" ]]; then - pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.1-cp34-cp34m-linux_x86_64.whl; + elif [[ "$TRAVIS_PYTHON_VERSION" == "3.5" ]]; then + pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.1-cp35-cp35m-linux_x86_64.whl; fi # command to run tests script: