Skip to content

Commit

Permalink
Adding support for Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterHamilton committed Nov 11, 2016
1 parent fbb4567 commit 6dc522a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
23 changes: 16 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
language: python
matrix:
include:
- python: 2.6
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 2.7
env: TOXENV=pep8
- python: 2.7
env: TOXENV=bandit
install:
- pip install tox
- pip install bandit
- pip install codecov
- pip install coveralls
script:
- tox
env:
- TOXENV=pep8
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=bandit
after_success:
- codecov
- coveralls
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,6 @@
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = pep8,py26,py27,py33,py34,bandit
envlist = pep8,py26,py27,py33,py34,py35,bandit

[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
Expand Down

0 comments on commit 6dc522a

Please sign in to comment.