From 4d4258921374669b9a29ac306f92648d5bbc3c9d Mon Sep 17 00:00:00 2001 From: enkore Date: Thu, 7 Mar 2013 18:49:57 +0100 Subject: [PATCH] Small fix (3.5) Version numbering policy: Increment the most righthand number every single time the package is uploaded to PyPI. --- i3pystatus/network.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/i3pystatus/network.py b/i3pystatus/network.py index da64001..0dd8350 100644 --- a/i3pystatus/network.py +++ b/i3pystatus/network.py @@ -83,7 +83,7 @@ class Network(IntervalModule): def run(self): info = netifaces.ifaddresses(self.interface) 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) if up: diff --git a/setup.py b/setup.py index ba48dae..0829549 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup(name="i3pystatus", - version="3.4", + version="3.5", description="Like i3status, this generates status line for i3bar / i3wm", url="http://github.com/enkore/i3pystatus", license="MIT",