Skip to content

Commit 70cda05

Browse files
authored
Merge pull request #38 from ets-labs/feature/add-python36-support
Feature/add python36 support
2 parents f29ccd7 + bbefe3d commit 70cda05

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ matrix:
2525
env: TOXENV=py34
2626
- python: 3.5
2727
env: TOXENV=py35
28+
- python: 3.6
29+
env: TOXENV=py36
2830
- python: pypy
2931
env: TOXENV=pypy
3032
notifications:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def run(self):
8080
'Programming Language :: Python :: 3.3',
8181
'Programming Language :: Python :: 3.4',
8282
'Programming Language :: Python :: 3.5',
83+
'Programming Language :: Python :: 3.6',
8384
'Programming Language :: Python :: Implementation :: CPython',
8485
'Programming Language :: Python :: Implementation :: PyPy',
8586
'Topic :: Software Development',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
coveralls, pylint, flake8, pydocstyle, py26, py27, py33, py34, py35, pypy
3+
coveralls, pylint, flake8, pydocstyle, py26, py27, py33, py34, py35, py36, pypy
44

55
[testenv]
66
whitelist_externals=

0 commit comments

Comments
 (0)