From d661552c67668af2898c423985496d2dd9124228 Mon Sep 17 00:00:00 2001 From: thc202 Date: Thu, 31 Jan 2019 23:45:52 +0000 Subject: [PATCH] Add newer Python versions to Travis CI Test also with Python 3.6 and 3.7 to ensure the API client still plays nice with those versions. Use Xenial dist which includes 3.7. Remove 3.4, no longer supported. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f8b79f7..b57ad32 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,10 @@ +dist: xenial sudo: false language: python python: - '2.7' - - '3.4' + - '3.6' + - '3.7' install: - pip install -U --force setuptools pip - ./setup.py develop