Kaydet (Commit) b0e234eb authored tarafından Joffrey F's avatar Joffrey F

Add py2-ipaddress dependency for python 2.x

Signed-off-by: 's avatarJoffrey F <joffrey@docker.com>
üst 01cf62b4
requests==2.5.3
six>=1.4.0
websocket-client==0.32.0
py2-ipaddress==3.4.1
\ No newline at end of file
requests==2.5.3
six>=1.4.0
websocket-client==0.32.0
\ No newline at end of file
......@@ -12,6 +12,9 @@ requirements = [
'websocket-client >= 0.32.0',
]
if sys.version_info[0] == 2:
requirements.append('py2-ipaddress >= 3.4.1')
exec(open('docker/version.py').read())
with open('./test-requirements.txt') as test_reqs_txt:
......
......@@ -8,7 +8,8 @@ commands =
py.test --cov=docker {posargs:tests/unit}
deps =
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
{py26,py27}: -r{toxinidir}/requirements.txt
{py33,py34}: -r{toxinidir}/requirements3.txt
[testenv:flake8]
commands = flake8 docker tests
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment