From 8665485960d15c7f448d4178506db3200c250c02 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 19 Feb 2019 00:14:05 +0100 Subject: [PATCH 1/2] travis: Build on Ubuntu 16.04 instead of 14.04 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4e528724..861b8b90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +dist: xenial language: python python: - "3.6" @@ -11,8 +12,7 @@ install: script: nosetests --with-coverage --with-doctest after_success: - coveralls --config_file .coveragerc -sudo: false addons: apt: packages: - - graphviz \ No newline at end of file + - graphviz From 6e062668ba1a34c24986351805a5d8c991599de7 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 19 Feb 2019 00:14:14 +0100 Subject: [PATCH 2/2] travis: Test on Python 3.7 --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 861b8b90..4dc86d8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,10 @@ dist: xenial language: python python: - - "3.6" - - "3.5" - "2.7" + - "3.5" + - "3.6" + - "3.7" install: - pip install python-coveralls coverage - pip install -r requirements.txt