Skip to content

Commit 420d491

Browse files
authored
Merge pull request #88 from dims/support-python35
Run Tests with python 3.5
2 parents d7f33ec + d3a2d60 commit 420d491

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: python
33
python:
44
- "2.7"
55
- "3.4"
6+
- "3.5"
67
# command to install dependencies
78
install:
89
- "pip install -r requirements.txt"

setup.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,20 @@
5151
include_package_data=True,
5252
long_description="""\
5353
Python client for kubernetes http://kubernetes.io/
54-
"""
54+
""",
55+
classifiers=[
56+
"Development Status :: 4 - Alpha",
57+
"Environment :: Kubernetes",
58+
"Topic :: Utilities",
59+
"Intended Audience :: Developers",
60+
"Intended Audience :: Information Technology",
61+
"License :: OSI Approved :: Apache Software License",
62+
"Operating System :: OS Independent",
63+
"Programming Language :: Python",
64+
"Programming Language :: Python :: 2",
65+
"Programming Language :: Python :: 2.7",
66+
"Programming Language :: Python :: 3",
67+
"Programming Language :: Python :: 3.4",
68+
"Programming Language :: Python :: 3.5",
69+
],
5570
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
2-
envlist = py27, py34
2+
envlist = py27, py34, py35
33

44
[testenv]
55
deps=-r{toxinidir}/requirements.txt
66
-r{toxinidir}/test-requirements.txt
77

88
commands=
99
nosetests \
10-
[]
10+
[]

0 commit comments

Comments
 (0)