Merge pull request #88 from dims/support-python35

Run Tests with python 3.5
This commit is contained in:
Mehdy Bohlool 2017-01-10 10:34:16 -08:00 committed by GitHub
commit 420d491bda
3 changed files with 19 additions and 3 deletions

View File

@ -3,6 +3,7 @@ language: python
python:
- "2.7"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install -r requirements.txt"

View File

@ -51,5 +51,20 @@ setup(
include_package_data=True,
long_description="""\
Python client for kubernetes http://kubernetes.io/
"""
""",
classifiers=[
"Development Status :: 4 - Alpha",
"Environment :: Kubernetes",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
)

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27, py34
envlist = py27, py34, py35
[testenv]
deps=-r{toxinidir}/requirements.txt
@ -7,4 +7,4 @@ deps=-r{toxinidir}/requirements.txt
commands=
nosetests \
[]
[]