diff options
| author | Free Ekanayaka <free@ekanayaka.io> | 2017-02-22 17:27:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-22 17:27:49 +0100 |
| commit | 9f073b9f146c73a3dcc9fe88c4e6cfacd66d463b (patch) | |
| tree | df9cb6c51f13d8fb89cfa2668d2402652cdb0bd1 | |
| parent | 1b88db0c939fe161242d2a2092a20af00c011e77 (diff) | |
| download | fixtures-git-9f073b9f146c73a3dcc9fe88c4e6cfacd66d463b.tar.gz | |
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).
| -rw-r--r-- | .travis.yml | 3 | ||||
| -rw-r--r-- | tox.ini | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 592a517..cc39aa2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,8 +7,9 @@ python: - "3.3" - "3.4" - "3.5" + - "3.6" - "pypy" - - pypy3 + - "pypy3.3-5.2-alpha1" - "nightly" install: @@ -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 |
