File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
requests == 2.5.3
2
2
six >= 1.4.0
3
3
websocket-client == 0.32.0
4
+ py2-ipaddress == 3.4.1
Original file line number Diff line number Diff line change
1
+ requests==2.5.3
2
+ six>=1.4.0
3
+ websocket-client==0.32.0
Original file line number Diff line number Diff line change 12
12
'websocket-client >= 0.32.0' ,
13
13
]
14
14
15
+ if sys .version_info [0 ] == 2 :
16
+ requirements .append ('py2-ipaddress >= 3.4.1' )
17
+
15
18
exec (open ('docker/version.py' ).read ())
16
19
17
20
with open ('./test-requirements.txt' ) as test_reqs_txt :
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ commands =
8
8
py.test --cov =docker {posargs:tests/unit}
9
9
deps =
10
10
-r{toxinidir}/test-requirements.txt
11
- -r{toxinidir}/requirements.txt
11
+ {py26,py27}: -r{toxinidir}/requirements.txt
12
+ {py33,py34}: -r{toxinidir}/requirements3.txt
12
13
13
14
[testenv:flake8]
14
15
commands = flake8 docker tests
You can’t perform that action at this time.
0 commit comments