Skip to content

Commit e78a347

Browse files
Merge pull request #805 from camporter/python3.6_support
Add Python 3.6 support.
2 parents f65c306 + e580a8a commit e78a347

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ matrix:
1010
env: TOX_ENV=py34
1111
- python: "3.5"
1212
env: TOX_ENV=py35
13+
- python: "3.6"
14+
env: TOX_ENV=py36
1315
- python: "pypy"
1416
env: TOX_ENV=pypy
1517
- python: "2.7"

SoftLayer/CLI/formatting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def format_output(data, fmt='table'): # pylint: disable=R0911,R0912
4848
cls=CLIJSONEncoder)
4949
elif fmt == 'jsonraw':
5050
return json.dumps(format_output(data, fmt='python'),
51-
CLIJSONEncoder)
51+
cls=CLIJSONEncoder)
5252
elif fmt == 'python':
5353
return data.to_python()
5454

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,pypy,analysis,coverage
2+
envlist = py27,py33,py34,py35,py36,pypy,analysis,coverage
33

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

0 commit comments

Comments
 (0)