Skip to content

Commit

Permalink
Python 3.5 compliance (#66)
Browse files Browse the repository at this point in the history
Fixes #65
  • Loading branch information
lukas-bednar authored Jun 22, 2016
1 parent 493c16c commit 0516e8f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
install:
- pip install tox codecov
- pip install tox tox-travis codecov
script:
- tox
after_success:
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ classifier =
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
keywords =
remote
resource
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[tox]
envlist = py26,py27,py34,pep8
envlist = py26,py27,py34,py35,pep8
[tox:travis]
2.6 = py26, pep8
2.7 = py27, pep8
3.4 = py34, pep8
3.5 = py35, pep8
[testenv]
deps = -r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
Expand Down

0 comments on commit 0516e8f

Please sign in to comment.