Skip to content

Commit

Permalink
Compatibility with python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-werner committed Nov 29, 2015
1 parent 078de10 commit 88b6c8b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -e .[tests]
script:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def run(self):
'pytest-cov',
'pytest-pep8',
'tox',
'enum34>=1.1.1', # otherwise Python 3.5 tox fails
],
},

Expand All @@ -70,6 +71,7 @@ def run(self):
'pytest-cov',
'pytest-pep8',
'tox',
'enum34>=1.1.1', # otherwise Python 3.5 tox fails
],

classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34
envlist = py27,py35

[testenv]
deps=
Expand Down

0 comments on commit 88b6c8b

Please sign in to comment.