From 9c0f5ce5813954f9991a22611f288009bc296577 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Wed, 22 Jan 2020 20:05:31 -0500 Subject: Add support for Python 3.8 release version on all platforms Also: - Try adding support for 3.9-dev on Travis - Update to running flake8 for 3.8 instead of 3.7 --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 016756fe..7f98a710 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,13 @@ matrix: dist: xenial env: TOXENV=py37 - os: linux - python: 3.8-dev + python: 3.8 dist: xenial env: TOXENV=py38 + - os: linux + python: 3.9-dev + dist: xenial + env: TOXENV=py39 - os: linux python: 3.5 env: TOXENV=docs @@ -43,7 +47,7 @@ install: before_script: # stop the build if there are Python syntax errors or undefined names # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - if [[ $TOXENV == py37 ]]; then + if [[ $TOXENV == py38 ]]; then flake8 . --count --ignore=E252,W503 --max-complexity=26 --max-line-length=127 --show-source --statistics ; fi -- cgit v1.2.1