Skip to content

Commit

Permalink
adds python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeximenes committed Sep 22, 2017
1 parent c358c78 commit 13a27c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
@@ -1,8 +1,13 @@
sudo: false
language: python
install:
- pip install tox
- pip install tox-travis
- pip install 'virtualenv<14.0.0'
script:
- tox
python:
- 3.5
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -79,6 +79,7 @@ def get_version(package):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_requirements
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py{27,33,34,35},coverage
py{27,33,34,35,36},coverage

[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
Expand All @@ -9,6 +9,7 @@ basepython =
py33: python3.3
py34: python3.4
py35: python3.5
py36: python3.6
deps =
mock
requests
Expand Down

0 comments on commit 13a27c9

Please sign in to comment.