Add python 3.6 support (#36)

Add 3.6 to the list of Python versions that Travis/tox will exercise. Also, switch the pypy3 target to version 3.3 (since pkg_resources is not supported anymore on 3.2).
This commit is contained in:
Free Ekanayaka 2017-02-22 17:27:49 +01:00 committed by GitHub
parent 1b88db0c93
commit 9f073b9f14
2 changed files with 3 additions and 2 deletions

View File

@ -7,8 +7,9 @@ python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- pypy3
- "pypy3.3-5.2-alpha1"
- "nightly"
install:

View File

@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33,py34,py35,pypy,pypy3
envlist = py26,py27,py33,py34,py35,py36,pypy,pypy3
minversion = 1.6
skipsdist = True