From 61862133fea81435a018e9c4d0698e72ebd26a26 Mon Sep 17 00:00:00 2001 From: Philip Wellnitz Date: Tue, 26 May 2020 19:51:40 +0900 Subject: [PATCH] travis: update build environ, add python 3.7, rm archaic py --- .travis.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index a1638de6..a0f4deb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,4 @@ -sudo: false -dist: trusty +dist: xenial cache: directories: - $HOME/.cache/pip @@ -20,14 +19,14 @@ install: tests/install.sh script: tests/test.sh jobs: include: + - stage: Recent Python + - python: "3.7" - stage: PyPy python: "pypy" - python: "pypy3" - - stage: Latest Python - python: "3.6" - - stage: Intermediate versions - python: "3.3" - - python: "3.4" + - stage: Old Python + python: "3.4" - python: "3.5" + - python: "3.6" # vim: et