Skip to content

Commit

Permalink
support python3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert committed Apr 3, 2017
1 parent e4ffbae commit 1f453e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ python:
- 2.6
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
install:
- pip install requests
- python setup.py install
script: ./runtests.sh
install: pip install -U tox-travis
script: tox
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],

# What does your project relate to?
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# content of: tox.ini , put in same dir as setup.py

[tox]
envlist = py26, py27, py33, py34, pypy
envlist = py26, py27, py33, py34, py35, py36, pypy, pypy3

[testenv]
deps = pytest
Expand Down

0 comments on commit 1f453e1

Please sign in to comment.