Merge pull request #552 from duboviy/master

Add Python 3.6 support
This commit is contained in:
Jakub Roztocil 2017-01-08 19:57:56 +01:00 committed by GitHub
commit 4840499a43
4 changed files with 8 additions and 5 deletions

View File

@ -7,7 +7,7 @@ os:
env:
global:
- NEWEST_PYTHON=3.5
- NEWEST_PYTHON=3.6
python:
- 2.6
@ -15,6 +15,7 @@ python:
- pypy
- 3.4
- 3.5
- 3.6
# Currently fails because of a Flask issue
# - pypy3
@ -42,12 +43,12 @@ matrix:
- os: osx
language: generic
env:
- TOXENV=py35
- TOXENV=py36
- BREW_INSTALL=python3
# Python Codestyle
- os: linux
python: 3.5
python: 3.6
env: CODESTYLE=true
install:

View File

@ -6,7 +6,7 @@ environment:
- PYTHON: "C:/Python27"
# Python 3.4 has outdated pip
# - PYTHON: "C:/Python34"
- PYTHON: "C:/Python35"
- PYTHON: "C:/Python36"
init:
- "ECHO %PYTHON%"

View File

@ -101,6 +101,8 @@ setup(
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',

View File

@ -3,7 +3,7 @@
[tox]
envlist = py26, py27, py35, pypy, codestyle
envlist = py26, py27, py35, py36, pypy, codestyle
[testenv]