From 43b692bf18b2e3550555d563f7f6a1bc836d7b73 Mon Sep 17 00:00:00 2001 From: Joe Esposito Date: Mon, 17 Jun 2019 00:30:28 -0400 Subject: [PATCH 1/2] Travis CI: Upgrade dist to xenial See: https://docs.travis-ci.com/user/reference/xenial/ https://docs.travis-ci.com/user/languages/python/#python-37-and-higher https://docs.travis-ci.com/user/reference/overview/#deprecated-virtualization-environments --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index db9affc..99dd11d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ -sudo: false +dist: xenial language: python python: - - "2.7" - - "3.4" - - "3.5" - - "3.6" - - "pypy" - - "pypy3" + - 2.7 + - 3.4 + - 3.5 + - 3.6 + - pypy + - pypy3 install: - pip install -e .[tests] script: From 5b05a0c3e1dcccaadcca937f99b10fea04d0665e Mon Sep 17 00:00:00 2001 From: Joe Esposito Date: Mon, 17 Jun 2019 00:38:47 -0400 Subject: [PATCH 2/2] Add Python 3.7 support --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 99dd11d..39863e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: - 3.4 - 3.5 - 3.6 + - 3.7 - pypy - pypy3 install: