Skip to content

Commit

Permalink
Merge pull request #293 from jonafato/python-3.6
Browse files Browse the repository at this point in the history
Declare support for Python 3.6
  • Loading branch information
tusharmakkar08 committed Jun 27, 2017
2 parents 2392366 + 885178e commit 599764b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- pypy
install:
- pip install coveralls
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
]
)
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = flake8,py26,py27,py35
envlist = flake8,py26,py27,py35,py36

[flake8]
; E501: line too long (X > 79 characters)
Expand Down Expand Up @@ -32,3 +32,6 @@ basepython = python2.7

[testenv:py35]
basepython = python3.5

[testenv:py36]
basepython = python3.6

0 comments on commit 599764b

Please sign in to comment.