From 90a492017cece1bb3155119404ee1729413d1798 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 7 Jan 2017 12:40:44 -0800 Subject: [PATCH] Support python3.6 --- .travis.yml | 2 +- appveyor.yml | 2 ++ build_manylinux_wheels.py | 1 + setup.py | 2 +- tox.ini | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8abd447c..5380f0af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,9 @@ python: - pypy - pypy3 - 2.7 -- 3.3 - 3.4 - 3.5 +- 3.6 install: - pip install -rrequirements-dev.txt coveralls script: diff --git a/appveyor.yml b/appveyor.yml index a0b44062..150a8422 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,6 +6,8 @@ environment: - PYTHON: 'C:\Python34-x64' - PYTHON: 'C:\Python35' - PYTHON: 'C:\Python35-x64' + - PYTHON: 'C:\Python36' + - PYTHON: 'C:\Python36-x64' matrix: fast_finish: true init: diff --git a/build_manylinux_wheels.py b/build_manylinux_wheels.py index 676db11e..7ba542d8 100755 --- a/build_manylinux_wheels.py +++ b/build_manylinux_wheels.py @@ -27,6 +27,7 @@ def main(): 'cp27-cp27mu', 'cp34-cp34m', 'cp35-cp35m', + 'cp36-cp36m', ): with tempfile.TemporaryDirectory() as work: pip = '/opt/python/{}/bin/pip'.format(python) diff --git a/setup.py b/setup.py index 1b57d23c..f92779ac 100644 --- a/setup.py +++ b/setup.py @@ -248,9 +248,9 @@ def run(self): 'Programming Language :: C++', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: Stackless', diff --git a/tox.ini b/tox.ini index 058fed7f..cac9ed40 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = pypy, pypy3, py27, py34, py35 +envlist = pypy, pypy3, py27, py34, py35, py36 [testenv] deps = -rrequirements-dev.txt