From f47e8cd7ada6a235e426e5366d1ee516fd830d2e Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Thu, 29 Jul 2021 11:33:02 +0200 Subject: [PATCH 1/2] CI: Add newer Pythons to the CI config --- .travis.yml | 3 +++ setup.py | 3 +++ tox.ini | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 518045a..fad7ad2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,9 @@ python: - '3.5' - '3.6' - '3.7' +- '3.8' +- '3.9' +- '3.10-dev' dist: xenial sudo: required addons: diff --git a/setup.py b/setup.py index 681ddd5..c53facf 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/tox.ini b/tox.ini index 4f1b147..1eda733 100644 --- a/tox.ini +++ b/tox.ini @@ -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 From da4ce1800021c77ac4f145eca378d6ce05f81970 Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Thu, 29 Jul 2021 11:33:31 +0200 Subject: [PATCH 2/2] Prepare a new release 0.15 --- CHANGES.rst | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 788527e..2999280 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Changelog ========= +0.15 +---- +Thu Jul 29 2021 Lumír Balhar + +- 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 diff --git a/setup.py b/setup.py index c53facf..fbf91ad 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ except ImportError: import subprocess as commands -version = '0.14' +version = '0.15' class PkgConfigExtension(Extension):