Skip to content

Commit ed974a2

Browse files
Merge pull request #56 from fedora-python/new-release
New release 0.15
2 parents b8b09b6 + da4ce18 commit ed974a2

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ python:
44
- '3.5'
55
- '3.6'
66
- '3.7'
7+
- '3.8'
8+
- '3.9'
9+
- '3.10-dev'
710
dist: xenial
811
sudo: required
912
addons:

CHANGES.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
0.15
5+
----
6+
Thu Jul 29 2021 Lumír Balhar <lbalhar@redhat.com>
7+
8+
- Tests are now skipped for wireguard devices
9+
- pifconfig is now able to show more than one IPv4 address per interface
10+
- pifconfig supports interfaces with no IPv4 address
11+
412
0.14
513
----
614
Wed Sep 12 2018 Miro Hrončok <mhroncok@redhat.com>

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
except ImportError:
1313
import subprocess as commands
1414

15-
version = '0.14'
15+
version = '0.15'
1616

1717

1818
class PkgConfigExtension(Extension):
@@ -126,6 +126,9 @@ def libraries(self, value):
126126
'Programming Language :: Python :: 3.5',
127127
'Programming Language :: Python :: 3.6',
128128
'Programming Language :: Python :: 3.7',
129+
'Programming Language :: Python :: 3.8',
130+
'Programming Language :: Python :: 3.9',
131+
'Programming Language :: Python :: 3.10',
129132
'Programming Language :: Python :: Implementation :: CPython',
130133
'Topic :: Software Development :: Libraries',
131134
'Topic :: System :: Networking',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py35,py36,py37
2+
envlist = py27,py35,py36,py37,py38,py39,py310
33
[testenv]
44
commands=
55
python tests/parse_ifconfig.py -v

0 commit comments

Comments
 (0)