From 8f3cb6cada976f81b7bc7ac350e578b32bff987b Mon Sep 17 00:00:00 2001 From: Karl Kroening Date: Fri, 5 Jul 2019 19:54:31 -0500 Subject: [PATCH] Add python 3.7 test configuration; drop future import in tox.ini --- .travis.yml | 3 +++ tox.ini | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c58274b..e51f420 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,9 @@ matrix: - python: 3.6 env: - TOX_ENV=py36 + - python: 3.7 + env: + - TOX_ENV=py37 - python: pypy env: - TOX_ENV=pypy diff --git a/tox.ini b/tox.ini index f86ec4b..397d41a 100644 --- a/tox.ini +++ b/tox.ini @@ -4,11 +4,10 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py34, py35, py36, pypy +envlist = py27, py34, py35, py36, py37, pypy [testenv] commands = py.test -vv deps = - future pytest pytest-mock