From 5de2202fdb7f7d4da72a19359d334f4ce86c6ef5 Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 7 Jan 2019 14:20:17 +0100 Subject: [PATCH 1/3] Travis CI: Add Python 3.7 to the testing --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 470edc695..1d8291907 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,9 @@ matrix: python: 3.5 - env: TOXENV=py36 python: 3.6 + - env: TOXENV=py37 + python: 3.7 + dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069) - env: TOXENV=pypy python: pypy install: From 3e32244c870f9a5b689e1e36a8f2bd4e72d0843c Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 7 Jan 2019 14:21:29 +0100 Subject: [PATCH 2/3] tox.ini: Add py37 to the testing --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8bcfa3762..9be7c16f8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] project = detect_secrets # These should match the travis env list -envlist = py27,py35,py36,pypy +envlist = py27,py35,py36,py37,pypy tox_pip_extensions_ext_pip_custom_platform = true tox_pip_extensions_ext_venv_update = true From b405043bb2157f7d7a6df8bbe2d7fbb96fd7c13e Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 7 Jan 2019 22:37:20 +0100 Subject: [PATCH 3/3] skip_missing_interpreters = true --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 9be7c16f8..964b6ce6a 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,7 @@ project = detect_secrets # These should match the travis env list envlist = py27,py35,py36,py37,pypy +skip_missing_interpreters = true tox_pip_extensions_ext_pip_custom_platform = true tox_pip_extensions_ext_venv_update = true