From ab4247e4fbf43861c0fe3890facc6104a3a3f0b9 Mon Sep 17 00:00:00 2001 From: Christo Goosen Date: Mon, 5 Jun 2017 23:21:31 +0100 Subject: [PATCH] Add Python 3.6 to testing (#176) * Add Python 3.6 to testing * Add Python 3.6 to testing * dist: trusty * python: - "3.6" --- .travis.yml | 4 +++- tox.ini | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2832910fb..07b7b3c18 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,14 @@ sudo: false +dist: trusty language: python python: - - "3.5" + - "3.6" env: matrix: - TOX_ENV=py27 - TOX_ENV=py34 - TOX_ENV=py35 + - TOX_ENV=py36 - TOX_ENV=flake8 cache: pip install: diff --git a/tox.ini b/tox.ini index 1a7fa65fa..38ac756b3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist= - py{27,34,35}, + py{27,34,35,36}, flake8 skipsdist=true @@ -22,6 +22,7 @@ basepython = py27: python2.7 py34: python3.4 py35: python3.5 + py36: python3.6 [testenv:flake8] basepython=python