Skip to content

Commit cba2e97

Browse files
committed
Require ipaddress on Python < 3.5
Signed-off-by: Felix Yan <[email protected]>
1 parent 9da5493 commit cba2e97

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
requests==2.5.3
22
six>=1.4.0
33
websocket-client==0.32.0
4-
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
4+
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
5+
ipaddress ; python_version < '3.5'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
extras_require = {
1616
':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5',
17+
':python_version < "3.5"': 'ipaddress',
1718
}
1819

1920
exec(open('docker/version.py').read())

0 commit comments

Comments
 (0)