Merge pull request #203 from OpenKMIP/maint/add-support-for-python3.5

Adding support for Python 3.5
This commit is contained in:
Peter Hamilton 2016-11-14 09:15:38 -05:00 committed by GitHub
commit 22de2ef95d
3 changed files with 18 additions and 8 deletions

View File

@ -1,4 +1,20 @@
language: python
matrix:
include:
- python: 2.6
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 2.7
env: TOXENV=pep8
- python: 2.7
env: TOXENV=bandit
install:
- pip install tox
- pip install bandit
@ -6,13 +22,6 @@ install:
- pip install coveralls
script:
- tox
env:
- TOXENV=pep8
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=bandit
after_success:
- codecov
- coveralls

View File

@ -60,5 +60,6 @@ setuptools.setup(
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)

View File

@ -1,5 +1,5 @@
[tox]
envlist = pep8,py26,py27,py33,py34,bandit
envlist = pep8,py26,py27,py33,py34,py35,bandit
[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH