We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cba2e97 commit c76a914Copy full SHA for c76a914
requirements.txt
@@ -2,4 +2,4 @@ requests==2.5.3
2
six>=1.4.0
3
websocket-client==0.32.0
4
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
5
-ipaddress ; python_version < '3.5'
+ipaddress==1.0.16 ; python_version < '3.3'
setup.py
@@ -1,6 +1,5 @@
1
#!/usr/bin/env python
import os
-import sys
from setuptools import setup
6
ROOT_DIR = os.path.dirname(__file__)
@@ -14,7 +13,7 @@
14
13
15
extras_require = {
16
':python_version < "3.5"': 'backports.ssl_match_hostname >= 3.5',
17
- ':python_version < "3.5"': 'ipaddress',
+ ':python_version < "3.3"': 'ipaddress >= 1.0.16',
18
}
19
20
exec(open('docker/version.py').read())
0 commit comments