From 1dc16fc12b0108e72c83650f6c4329dde90c55a9 Mon Sep 17 00:00:00 2001 From: Alexander Kukushkin Date: Mon, 1 Aug 2016 08:32:43 +0200 Subject: [PATCH] Travis changed python version to 3.5.2 Plus stick to the flake8==2.6.0 until https://gitlab.com/pycqa/flake8/issues/164 is not fixed --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 85b1395f..1897ce91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ cache: directories: - $HOME/virtualenv/python2.7.9 - $HOME/virtualenv/python3.4.2 - - $HOME/virtualenv/python3.5.0 + - $HOME/virtualenv/python3.5.2 install: - | set -e @@ -51,7 +51,7 @@ install: for pv in "2.7" "3.4" "3.5"; do source ~/virtualenv/python${pv}/bin/activate # explicitly install all needed python modules to cache them - for p in '-r requirements.txt' 'behave codacy-coverage coverage coveralls flake8 mock>=2.0.0 pytest-cov pytest'; do + for p in '-r requirements.txt' 'behave codacy-coverage coverage coveralls flake8==2.6.0 mock>=2.0.0 pytest-cov pytest'; do pip install $p done done