Skip to content

Commit 40fd44c

Browse files
committed
Add py36 to test matrix
1 parent 421e3f8 commit 40fd44c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ matrix:
2323
- python: 3.5
2424
env:
2525
- "TOXENV=py35"
26-
- python: 3.5
26+
- python: 3.6
27+
env:
28+
- "TOXENV=py36"
29+
- python: 3.6
2730
env:
2831
- "TOXENV=lint"
2932

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def get_version():
9191
'Programming Language :: Python :: 3.3',
9292
'Programming Language :: Python :: 3.4',
9393
'Programming Language :: Python :: 3.5',
94+
'Programming Language :: Python :: 3.6',
9495
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
9596
'Topic :: Software Development :: Libraries :: Python Modules'
9697
]

tox.ini

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

44
[testenv]
55
commands =
@@ -23,6 +23,9 @@ recreate = True
2323
[testenv:py35]
2424
recreate = True
2525

26+
[testenv:py36]
27+
recreate = True
28+
2629
[testenv:lint]
2730
recreate = True
2831
commands =

0 commit comments

Comments
 (0)