From 66ed015ea0b92bcd6aa4b368057f79ee3a33c030 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 22 Jul 2018 12:35:40 -0400 Subject: [PATCH] Add Python 3.7 to Tox and Travis --- .travis.yml | 2 ++ tox.ini | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2f15baf7e..929ffc46c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,8 @@ matrix: env: {TOX_ENV: py35-test} - python: 3.6 env: {TOX_ENV: py36-test} + - python: 3.7 + env: {TOX_ENV: py37-test} # - python: pypy # - env: {TOX_ENV: pypy-test} - python: 3.4 diff --git a/tox.ini b/tox.ini index 8c3731f5d..eb678369f 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27-test, py36-test, py27-flake8, docs +envlist = py27-test, py37-test, py27-flake8, docs # The exhaustive list of environments is: # envlist = py{27,34,35}-{test,cov}, py{27,34,35}-flake8, docs @@ -50,6 +50,7 @@ commands = py34-flake8: flake8 --min-version 3.4 {posargs} {[_flake8]files} py35-flake8: flake8 --min-version 3.5 {posargs} {[_flake8]files} py36-flake8: flake8 --min-version 3.6 {posargs} {[_flake8]files} + py37-flake8: flake8 --min-version 3.7 {posargs} {[_flake8]files} [testenv:docs] basepython = python2.7