Small fix (3.5)
Version numbering policy: Increment the most righthand number every single time the package is uploaded to PyPI.
This commit is contained in:
parent
4cd1b177de
commit
4d42589213
@ -83,7 +83,7 @@ class Network(IntervalModule):
|
|||||||
def run(self):
|
def run(self):
|
||||||
info = netifaces.ifaddresses(self.interface)
|
info = netifaces.ifaddresses(self.interface)
|
||||||
up = netifaces.AF_INET in info or netifaces.AF_INET6 in info
|
up = netifaces.AF_INET in info or netifaces.AF_INET6 in info
|
||||||
fdict = dict(zip_longest(["v4", "v4mask", "v6", "v6mask"], [], fillvalue=""))
|
fdict = dict(zip_longest(["v4", "v4mask", "v4cidr", "v6", "v6mask", "v6cidr"], [], fillvalue=""))
|
||||||
fdict.update(self.baseinfo)
|
fdict.update(self.baseinfo)
|
||||||
|
|
||||||
if up:
|
if up:
|
||||||
|
2
setup.py
2
setup.py
@ -3,7 +3,7 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(name="i3pystatus",
|
setup(name="i3pystatus",
|
||||||
version="3.4",
|
version="3.5",
|
||||||
description="Like i3status, this generates status line for i3bar / i3wm",
|
description="Like i3status, this generates status line for i3bar / i3wm",
|
||||||
url="http://github.com/enkore/i3pystatus",
|
url="http://github.com/enkore/i3pystatus",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
|
Loading…
Reference in New Issue
Block a user