Skip to content

Commit

Permalink
Support python3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jan 7, 2017
1 parent 7a24cc5 commit 90a4920
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions build_manylinux_wheels.py
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit 90a4920

Please sign in to comment.