File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,13 @@ See examples directory for more.
122
122
Changelog
123
123
=========
124
124
125
+ 0.19.0
126
+ ------
127
+
128
+ * Technically backwards incompatible - restricted netifaces dependency version to
129
+ work around a bug, see https://github.com/jstasiak/python-zeroconf/issues/84 for
130
+ details
131
+
125
132
0.18.0 (not released yet)
126
133
-------------------------
127
134
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ flake8-blind-except
8
8
# Upper bound because of https://github.com/public/flake8-import-order/issues/42
9
9
flake8-import-order >= 0.4.0 , < 0.6.0
10
10
mock
11
- netifaces
11
+ # See setup.py comment for why this version is restricted
12
+ netifaces <= 0.10.4
12
13
nose
13
14
pep8 == 1.5.7
14
15
pep8-naming
Original file line number Diff line number Diff line change 56
56
],
57
57
install_requires = [
58
58
'enum-compat' ,
59
- 'netifaces' ,
59
+ # netifaces 0.10.5 has a bug that results in all interfaces' netmasks
60
+ # to be 255.255.255.255 on Windows which breaks things. See:
61
+ # * https://github.com/jstasiak/python-zeroconf/issues/84
62
+ # * https://bitbucket.org/al45tair/netifaces/issues/39/netmask-is-always-255255255255
63
+ 'netifaces<=0.10.4' ,
60
64
'six' ,
61
65
],
62
66
)
You can’t perform that action at this time.
0 commit comments