Skip to content

Support python3.6 #182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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