Skip to content

Commit

Permalink
Enable Python 3.5 and 3.6 in Travis, tox, setup.py
Browse files Browse the repository at this point in the history
No Python 3.4 because it doesn't support b'...' % (...).
  • Loading branch information
mgedmin committed Oct 22, 2017
1 parent c452395 commit 1fb8d31
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ language: python
sudo: false
python:
- 2.7
- 3.5
- 3.6
install:
- pip install tox-travis
script:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ CHANGES

- Drop Python 2.6 support.

- Add Python 3.5 and 3.6 support.


3.9.0 (2013-03-13)
------------------
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ def read(*rnames):
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[tox]
envlist =
py27
py27,
py35,
py36,

[testenv]
deps =
Expand Down

0 comments on commit 1fb8d31

Please sign in to comment.