From 5acad0057d66f655cd2d0cabe3440111d96c365e Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Mon, 6 Aug 2018 18:40:23 +0200 Subject: [PATCH] Add Python 3.7 to Tox and Travis --- .travis.yml | 1 + tox.ini | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index beaa2d0..bcd67e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,5 +2,6 @@ sudo: false language: python python: - "3.6" + - "3.7" install: pip install tox-travis script: tox diff --git a/tox.ini b/tox.ini index 5704ec5..a63bfb7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,12 @@ [tox] envlist = py36 + py37 [travis] python = 3.6: py36 + 3.7: py37 [testenv] deps = -rrequirements.txt