We are overjoyed to announce the release of: oslo.privsep 3.5.0 This release is part of the epoxy release series. The source is available from: https://opendev.org/openstack/oslo.privsep Download the package from: https://pypi.org/project/oslo.privsep Please report issues through: https://bugs.launchpad.net/oslo.privsep/+bugs For more details, please see below. 3.5.0 ^^^^^ Upgrade Notes * Support for Python 3.8 has been removed. Now the minimum python version supported is 3.9 . Changes in oslo.privsep 3.4.0..3.5.0 ------------------------------------ 3e687e2 Add note about requirements lower bounds d664c17 Run pyupgrade to clean up Python 2 syntaxes b1a299d pre-commit: Bump versions 8b23787 Remove Python 3.8 support bbc8b33 Declare Python 3.12 support 10dc9cb Bump oslo.log to >=5.0.2 85b7fb5 Update master for stable/2024.2 3474dd5 Python 3.13: do not use removed module "pipes" Diffstat (except docs and test files) ------------------------------------- .pre-commit-config.yaml | 34 ++++++++++------------ oslo_privsep/comm.py | 14 ++++----- oslo_privsep/daemon.py | 29 +++++++----------- oslo_privsep/functional/test_daemon.py | 2 +- oslo_privsep/priv_context.py | 4 +-- .../notes/remove-py38-617d1a2405d75815.yaml | 5 ++++ releasenotes/source/2024.2.rst | 6 ++++ releasenotes/source/conf.py | 1 - releasenotes/source/index.rst | 1 + requirements.txt | 6 +++- setup.cfg | 4 +-- test-requirements.txt | 6 ---- tox.ini | 4 +-- 19 files changed, 72 insertions(+), 77 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index b44b3d2..7d7b87f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,5 @@ -oslo.log>=3.36.0 # Apache-2.0 +# 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. + +oslo.log>=5.0.2 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 33138b3..326654c 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1 +0,0 @@ -hacking>=6.1.0,<6.2.0 # Apache-2.0 @@ -5,5 +3,0 @@ stestr>=2.0.0 # Apache-2.0 - -# Bandit security code scanner -bandit>=1.7.0,<1.8.0 # Apache-2.0 - -pre-commit>=2.6.0 # MIT