Skip to content

Commit ef84370

Browse files
committed
Run tests on Python 3.6
1 parent dae433d commit ef84370

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ env:
88
- VERSION=3.3
99
- VERSION=3.4
1010
- VERSION=3.5
11+
- VERSION=3.6
1112
matrix:
1213
include:
1314
- sudo: required

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ environment:
1616
- PYTHON: "C:\\Python34-x64"
1717
- PYTHON: "C:\\Python35"
1818
- PYTHON: "C:\\Python35-x64"
19+
- PYTHON: "C:\\Python36"
20+
- PYTHON: "C:\\Python36-x64"
1921

2022
init:
2123
- ps: "ls C:/Python*"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ def get_tag(self):
125125
'Programming Language :: Python :: 3.3',
126126
'Programming Language :: Python :: 3.4',
127127
'Programming Language :: Python :: 3.5',
128+
'Programming Language :: Python :: 3.6',
128129
'Programming Language :: Python :: Implementation :: CPython',
129130
'Programming Language :: Python :: Implementation :: PyPy',
130131
'Intended Audience :: Developers',

tox-wheels.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 = pip wheel {toxinidir} -w {toxinidir}/wheelhouse/

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, pypy
2+
envlist = py26, py27, py33, py34, py35, py36, pypy
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)