Support Python3.6

This commit is contained in:
Stanislav Kudriashev 2017-03-31 12:06:36 +03:00
parent 576a24522a
commit 2c7ad5b758
3 changed files with 7 additions and 4 deletions

View File

@ -15,11 +15,13 @@ matrix:
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
install:
- pip install tox
- pip install mock
- pip install tox
- pip install mock
script:
- tox
- tox
deploy:
provider: pypi
user: Mahmoud.Abdelkader

View File

@ -47,6 +47,7 @@ setup(
'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',
'Topic :: Software Development :: Testing',

View File

@ -1,5 +1,5 @@
[tox]
envlist = pep8,pypy,pypy3,py27,py33,py34,py35
envlist = pep8,pypy,pypy3,py27,py33,py34,py35,py36
[testenv]
usedevelop = True