From 3f26782f3bd12e877f03f78e0603e4ec93953cf2 Mon Sep 17 00:00:00 2001 From: Hadrien Mary Date: Sat, 23 Apr 2016 13:15:56 -0400 Subject: [PATCH] Deploy doc only for py 3.5 --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6307d32..71f557b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,11 @@ install: - python setup.py install script: - - travis-sphinx --source=doc/source/ build + - if [ $TRAVIS_PYTHON_VERSION == "3.5" ]; then + travis-sphinx --source=doc/source/ build + fi after_success: - - travis-sphinx deploy + - if [ $TRAVIS_PYTHON_VERSION == "3.5" ]; then + travis-sphinx deploy + fi