*** rteval-3.6 ***
From: | John Kacur <jkacur-AT-redhat.com> | |
To: | RT <linux-rt-users-AT-vger.kernel.org> | |
Subject: | [ANNOUNCE] *** rteval-3.6 *** | |
Date: | Tue, 21 Feb 2023 14:58:25 -0500 | |
Message-ID: | <20230221195828.17919-1-jkacur@redhat.com> | |
Cc: | Clark Williams <williams-AT-redhat.com>, Kate Carcia Poulin <kcarcia-AT-redhat.com>, John Kacur <jkacur-AT-redhat.com> | |
Archive-link: | Article |
I am pleased to announce version 3.6 of rteval Some highlights of this release - It removes the dependency on python-ethtool - Catches any failures in python-dmidecode without failing Reports have also been sent upstream to fix a problem in python dmidecode uncovered by rteval - Changes the default linux kernel to compile as a load to linux-6.1.8 - Removes deprecated distutils Enjoy! To fetch Clone git://git.kernel.org/pub/scm/utils/rteval/rteval.git Branch: main Tag: v3.6 Tarballs available here: https://kernel.org/pub/linux/utils/rteval Older version tarballs are available here: https://kernel.org/pub/linux/utils/rteval/older John Kacur (14): rteval: Fix "DMI WARNING" when not running as root rteval: Replace python-ethtool with inline code rteval: Don't attempt to get DMIinfo if there are dmi warnings rteval: rteval/__init__.py: Convert regular strings to f-strings rteval: rtevalReport.py: Convert regular strings to f-strings rteval: rtevalXMLRPC.py: Convert regular strings to f-strings rteval: rtevalConfig.py: Convert regular strings to f-strings rteval: xmlout.py: Convert to f-strings where possible rteval: Log.py: Convert to f-strings rteval: Catch failures in python-dmidecode rteval: Change the default kernel to compile to linux-6.1.8 rteval: Use sysconfig instead of deprecated distutils rteval: setup: Remove distutils and clean-ups rteval: Update version number to v3.6 Makefile | 2 +- rteval-cmd | 4 +- rteval.spec | 2 +- rteval/Log.py | 9 +- rteval/__init__.py | 39 +++--- rteval/modules/loads/kcompile.py | 4 +- rteval/rteval.conf | 2 +- rteval/rtevalConfig.py | 10 +- rteval/rtevalReport.py | 6 +- rteval/rtevalXMLRPC.py | 34 ++--- rteval/sysinfo/__init__.py | 11 +- rteval/sysinfo/dmi.py | 87 +++++++----- rteval/sysinfo/network.py | 117 ---------------- rteval/sysinfo/newnet.py | 225 +++++++++++++++++++++++++++++++ rteval/version.py | 2 +- rteval/xmlout.py | 10 +- setup.py | 27 ++-- 17 files changed, 359 insertions(+), 232 deletions(-) delete mode 100644 rteval/sysinfo/network.py create mode 100644 rteval/sysinfo/newnet.py -- 2.39.1