From 2cc1f78b5bc8d61d1159344c3829298c3085cc59 Mon Sep 17 00:00:00 2001 From: Adrian Vladu Date: Wed, 25 Mar 2026 15:38:04 +0200 Subject: [PATCH] setuptools: use >= 82.0.1 and pbr: use >= 7.0.2 pkg_resources module was removed from setuptools, and pbr version < 7.0.2 was using it. https://github.com/openstack/pbr/commit/1e1c6d5c7d3738d0b4eaf83bee051a1f3ba623ac Fixes: https://github.com/cloudbase/PyMI/issues/57 Signed-off-by: Adrian Vladu --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ddb1233..4ad20e5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -pbr!=2.1.0,>=2.0.0 # Apache-2.0 +pbr>=7.0.2 # Apache-2.0 six>=1.10.0 # MIT +setuptools>=82.0.0 # MIT