Skip to content

Commit

Permalink
Support Python 3.6. (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthagen authored and drhagen committed Feb 8, 2017
1 parent 05a69b0 commit 99ca189
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
21 changes: 10 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
language: python

# Python 3.5 specified to make tox environment 'py35' work.
# See: https://github.com/travis-ci/travis-ci/issues/4794
python:
- 3.5
matrix:
include:
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36

notifications:
false

# Environment changes have to be manually synced with 'tox.ini'.
# See: https://github.com/travis-ci/travis-ci/issues/3024
env:
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35

install:
- pip install -U setuptools
- pip install tox
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flake8>=3.2.0
flake8>=3.3.0
pep8-naming
flake8-quotes
pytest
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ envlist =
py33
py34
py35
py36

[flake8]
max-line-length = 120
Expand Down

0 comments on commit 99ca189

Please sign in to comment.