Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ python:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10-dev'
dist: xenial
sudo: required
addons:
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

0.15
----
Thu Jul 29 2021 Lumír Balhar <lbalhar@redhat.com>

- Tests are now skipped for wireguard devices
- pifconfig is now able to show more than one IPv4 address per interface
- pifconfig supports interfaces with no IPv4 address

0.14
----
Wed Sep 12 2018 Miro Hrončok <mhroncok@redhat.com>
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
except ImportError:
import subprocess as commands

version = '0.14'
version = '0.15'


class PkgConfigExtension(Extension):
Expand Down Expand Up @@ -126,6 +126,9 @@ def libraries(self, value):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Networking',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py35,py36,py37
envlist = py27,py35,py36,py37,py38,py39,py310
[testenv]
commands=
python tests/parse_ifconfig.py -v
Expand Down