From be54fe6c4f463f1954dffe4473f8f497d3255961 Mon Sep 17 00:00:00 2001 From: Marcin Usielski Date: Mon, 16 Mar 2026 10:41:17 +0100 Subject: [PATCH] Moler 4.8.0 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- docs/source/conf.py | 2 +- setup.py | 5 ++--- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2c99182c..45c1778d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## moler 4.8.0 + * Delete device aftret its test + * Fixing threads remaining after device removal + ## moler 4.7.0 * Add support for NSA mode in the AT+COPS command diff --git a/README.md b/README.md index d6534a626..3bc558ffa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![image](https://img.shields.io/badge/pypi-v4.7.0-blue.svg)](https://pypi.org/project/moler/) -[![image](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue.svg)](https://pypi.org/project/moler/) +[![image](https://img.shields.io/badge/pypi-v4.8.0-blue.svg)](https://pypi.org/project/moler/) +[![image](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue.svg)](https://pypi.org/project/moler/) [![Build Status](https://github.com/nokia/moler/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/nokia/moler/actions) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](./LICENSE) diff --git a/docs/source/conf.py b/docs/source/conf.py index e741131c3..99c7f6970 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ author = 'Nokia' # The short X.Y version -version = '4.7.0' +version = '4.8.0' # The full version, including alpha/beta/rc tags release = 'stable' diff --git a/setup.py b/setup.py index 01cb1dff9..ac065c3a4 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='moler', - version='4.7.0', + version='4.8.0', description='Moler is a library for working with terminals, mainly for automated tests', # Required long_description=long_description, long_description_content_type='text/markdown', @@ -35,7 +35,6 @@ 'Operating System :: Unix', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', @@ -51,7 +50,7 @@ keywords='testing development', packages=find_packages(exclude=['docs', 'examples', 'images', 'test', 'test.*']), install_requires=requirements, - python_requires='>=3.7', + python_requires='>=3.8', project_urls={ 'Bug Reports': 'https://github.com/nokia/moler/issues', 'Source': 'https://github.com/nokia/moler',