We jubilantly announce the release of: oslo.concurrency 6.2.0 This release is part of the epoxy release series. The source is available from: https://opendev.org/openstack/oslo.concurrency Download the package from: https://pypi.org/project/oslo.concurrency Please report issues through: https://bugs.launchpad.net/oslo.concurrency/+bugs For more details, please see below. 6.2.0 ^^^^^ Upgrade Notes * Support for Python 3.8 has been removed. Now the minimum python version supported is 3.9 . Changes in oslo.concurrency 6.1.0..6.2.0 ---------------------------------------- 3eaf649 Add note about requirements lower bounds 05fb91d Remove Python 3.8 support 1f5ba0c Run pyupgrade to clean up Python 2 syntaxes ca6388b Fix outdated tox minversion 749be98 Declare Python 3.12 support dcc8914 Remove workaround for eventlet bug #592 782268c Update master for stable/2024.2 Diffstat (except docs and test files) ------------------------------------- .pre-commit-config.yaml | 11 +++++++--- oslo_concurrency/fixture/lockutils.py | 4 ++-- oslo_concurrency/lockutils.py | 6 +++--- oslo_concurrency/processutils.py | 19 ++++++---------- oslo_concurrency/watchdog.py | 2 +- .../notes/remove-py38-dcdd342ee21f8118.yaml | 5 +++++ releasenotes/source/2024.2.rst | 6 ++++++ releasenotes/source/conf.py | 1 - releasenotes/source/index.rst | 1 + requirements.txt | 4 ++++ setup.cfg | 8 +++++-- test-requirements.txt | 2 +- tox.ini | 2 +- 17 files changed, 67 insertions(+), 56 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index a4c892a..b106d86 100644 --- a/requirements.txt +++ b/requirements.txt @@ -0,0 +1,4 @@ +# Requirements lower bounds listed here are our best effort to keep them up to +# date but we do not test them so no guarantee of having them all correct. If +# you find any incorrect lower bounds, let us know or propose a fix. + diff --git a/test-requirements.txt b/test-requirements.txt index 240590e..53c7c51 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -5 +5 @@ stestr>=2.0.0 # Apache-2.0 -eventlet>=0.19.0 # MIT +eventlet>=0.27.0 # MIT