Skip to content

Commit 90a4920

Browse files
committed
Support python3.6
1 parent 7a24cc5 commit 90a4920

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ python:
33
- pypy
44
- pypy3
55
- 2.7
6-
- 3.3
76
- 3.4
87
- 3.5
8+
- 3.6
99
install:
1010
- pip install -rrequirements-dev.txt coveralls
1111
script:

appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ environment:
66
- PYTHON: 'C:\Python34-x64'
77
- PYTHON: 'C:\Python35'
88
- PYTHON: 'C:\Python35-x64'
9+
- PYTHON: 'C:\Python36'
10+
- PYTHON: 'C:\Python36-x64'
911
matrix:
1012
fast_finish: true
1113
init:

build_manylinux_wheels.py

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def main():
2727
'cp27-cp27mu',
2828
'cp34-cp34m',
2929
'cp35-cp35m',
30+
'cp36-cp36m',
3031
):
3132
with tempfile.TemporaryDirectory() as work:
3233
pip = '/opt/python/{}/bin/pip'.format(python)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ def run(self):
248248
'Programming Language :: C++',
249249
'Programming Language :: Python :: 2.7',
250250
'Programming Language :: Python :: 3',
251-
'Programming Language :: Python :: 3.3',
252251
'Programming Language :: Python :: 3.4',
253252
'Programming Language :: Python :: 3.5',
253+
'Programming Language :: Python :: 3.6',
254254
'Programming Language :: Python :: Implementation :: CPython',
255255
'Programming Language :: Python :: Implementation :: PyPy',
256256
'Programming Language :: Python :: Implementation :: Stackless',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pypy, pypy3, py27, py34, py35
2+
envlist = pypy, pypy3, py27, py34, py35, py36
33

44
[testenv]
55
deps = -rrequirements-dev.txt

0 commit comments

Comments
 (0)