From c6c2dfdc2882bcf166ed35e8517aad25a6c2bfe8 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 31 Jul 2019 06:30:22 +0200 Subject: [PATCH 1/2] Travis CI: Add Python 3.7 to the tests Python 3.4 is end of life... Should we drop support for it? --- .travis.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index c58274b..e4d7d75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,20 +9,18 @@ before_install: matrix: include: - python: 2.7 - env: - - TOX_ENV=py27 + env: TOX_ENV=py27 - python: 3.4 - env: - - TOX_ENV=py34 + env: TOX_ENV=py34 - python: 3.5 - env: - - TOX_ENV=py35 + env: TOX_ENV=py35 - python: 3.6 - env: - - TOX_ENV=py36 + env: TOX_ENV=py36 + - python: 3.7 + dist: xenial # required for Python >= 3.7 + env: TOX_ENV=py37 - python: pypy - env: - - TOX_ENV=pypy + env: TOX_ENV=pypy install: - pip install tox script: From ed9b7f8804fb07f5bf4e7f6d7373f0107d404c13 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 31 Jul 2019 06:32:29 +0200 Subject: [PATCH 2/2] tox.ini: Add py37 to the testing Python 3.4 is end of life... Should we drop support for it? --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f86ec4b..1e3ba53 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py34, py35, py36, pypy +envlist = py27, py34, py35, py36, py37, pypy [testenv] commands = py.test -vv