Skip to content

Commit b9975fa

Browse files
Merge pull request awslabs#165 from JordonPhillips/support-36
Update language support tests and docs
2 parents ab5ed9a + a21e0e8 commit b9975fa

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.travis.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
language: python
2-
env:
3-
- TOXENV=py26
4-
- TOXENV=py27
5-
- TOXENV=py33
6-
- TOXENV=py34
2+
3+
matrix:
4+
include:
5+
- python: 2.6
6+
env: TOXENV=py26
7+
- python: 2.7
8+
env: TOXENV=py27
9+
- python: 3.3
10+
env: TOXENV=py33
11+
- python: 3.4
12+
env: TOXENV=py34
13+
- python: 3.5
14+
env: TOXENV=py35
15+
- python: 3.6
16+
env: TOXENV=py36
17+
718
sudo: false
819
install:
920
- travis_retry pip install tox

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,7 @@
5353
'Programming Language :: Python :: 3',
5454
'Programming Language :: Python :: 3.3',
5555
'Programming Language :: Python :: 3.4',
56+
'Programming Language :: Python :: 3.5',
57+
'Programming Language :: Python :: 3.6',
5658
),
5759
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26,py27,py33,py34,py35
2+
envlist = py26,py27,py33,py34,py35,py36
33

44
[testenv]
55
commands = py.test

0 commit comments

Comments
 (0)