mirror of https://github.com/docker/docker-py.git
Require ipaddress on Python < 3.5
Signed-off-by: Felix Yan <felixonmars@archlinux.org>
This commit is contained in:
parent
9da5493135
commit
cba2e973ec
|
|
@ -1,4 +1,5 @@
|
||||||
requests==2.5.3
|
requests==2.5.3
|
||||||
six>=1.4.0
|
six>=1.4.0
|
||||||
websocket-client==0.32.0
|
websocket-client==0.32.0
|
||||||
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
|
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
|
||||||
|
ipaddress ; python_version < '3.5'
|
||||||
1
setup.py
1
setup.py
|
|
@ -14,6 +14,7 @@ requirements = [
|
||||||
|
|
||||||
extras_require = {
|
extras_require = {
|
||||||
':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5',
|
':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5',
|
||||||
|
':python_version < "3.5"': 'ipaddress',
|
||||||
}
|
}
|
||||||
|
|
||||||
exec(open('docker/version.py').read())
|
exec(open('docker/version.py').read())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue