From: Tom Christie Date: Mon, 25 Jun 2018 13:35:44 +0000 (+0100) Subject: Only run 'black' on python >= 3.6 X-Git-Tag: 0.1.1~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=548d5cde17ecdeeb47f27230020f26616c130b7f;p=thirdparty%2Fstarlette.git Only run 'black' on python >= 3.6 --- 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