From 3995c86efcee1deda46f4718f22b2884940cb35a Mon Sep 17 00:00:00 2001 From: Derrick Gilland Date: Thu, 15 Nov 2018 03:32:00 +0000 Subject: [PATCH] Update travis.yml to run on xenial for proper Python 3.7 support. --- .travis.yml | 3 ++- tox.ini | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index a1f442fb..b3939173 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,13 @@ # Config file for automatic testing at travis-ci.org sudo: false +dist: xenial language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - - "3.7-dev" + - "3.7" install: - pip install tox-travis script: diff --git a/tox.ini b/tox.ini index 52838de8..f85be82e 100644 --- a/tox.ini +++ b/tox.ini @@ -9,10 +9,11 @@ commands = {[testenv:unit]commands} [travis] python = + 2.7: py27 3.4: py34 3.5: py35 - 3.6: py36, lint, docs, build - 3.7-dev: py37 + 3.6: py36 + 3.7: py37, lint, docs, build [testenv:unit] commands = pytest {posargs:--cov={envsitepackagesdir}/pydash {envsitepackagesdir}/pydash tests}