Skip to content

Commit c6c1923

Browse files
authored
Merge pull request #128 from jdufresne/py36
Add testing for Python 3.6 and document support
2 parents ef36ae7 + 5beed6e commit c6c1923

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python:
55
- "3.3"
66
- "3.4"
77
- "3.5"
8+
- "3.6"
89
- "pypy"
910
before_install:
1011
- pip install codecov

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,9 @@
2929
'Programming Language :: Python :: 3',
3030
'Programming Language :: Python :: 3.3',
3131
'Programming Language :: Python :: 3.4',
32+
'Programming Language :: Python :: 3.5',
33+
'Programming Language :: Python :: 3.6',
34+
'Programming Language :: Python :: Implementation :: CPython',
35+
'Programming Language :: Python :: Implementation :: PyPy',
3236
),
3337
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26,py27,py33,py34,py35
2+
envlist = py26,py27,py33,py34,py35,py36,pypy
33

44
[testenv]
55
commands = nosetests

0 commit comments

Comments
 (0)