From b8232fb81202a0e70fa43fc1219f38ac3a284255 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Sat, 2 Nov 2019 00:37:41 +0000 Subject: [PATCH] Update Travis to test supported Python 3 versions 3.4 is end-of-life. Travis also supports 3.7 (and 3.8) without hacks, so remove that too. --- .travis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index be70ab4..92d7ec5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,9 @@ language: python python: - "2.7" - - "3.4" - "3.5" - "3.6" -# Hack for Python 3.7; remove when Travis correctly supports it. -matrix: - include: - - python: 3.7 - dist: xenial - sudo: true + - "3.7" + - "3.8" script: - python setup.py test