From 548d5cde17ecdeeb47f27230020f26616c130b7f Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 25 Jun 2018 14:35:44 +0100 Subject: [PATCH] Only run 'black' on python >= 3.6 --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 13fc42cb..36c34518 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: python cache: pip python: - - "pypy3.5" - "3.5" - "3.6" @@ -11,5 +10,5 @@ install: - pip install -r requirements.txt script: - - scripts/lint + - if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then scripts/lint; fi - scripts/test