From 66613f4112b0e68f30430944b7d94e6ca14b1f62 Mon Sep 17 00:00:00 2001 From: Michael Hwang Date: Thu, 14 Sep 2017 10:56:07 -0400 Subject: Fix issue where container ports is not list Container ports was being returned as dict keys for python3 Change-Id: I434049c465094265d8e0ec8c8d6310b682866da8 Issue-Id: DCAEGEN2-91 Signed-off-by: Michael Hwang --- python-dockering/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'python-dockering/setup.py') diff --git a/python-dockering/setup.py b/python-dockering/setup.py index 418403e..9a0537e 100644 --- a/python-dockering/setup.py +++ b/python-dockering/setup.py @@ -29,6 +29,7 @@ setup( packages=['dockering'], zip_safe=False, install_requires=[ - "docker-py>=1.0.0,<2.0.0" + "docker-py>=1.0.0,<2.0.0", + "six" ] ) -- cgit 1.2.3-korg