bump pbr to match what pyproject.toml requests

In 8928f45402f26 the minimum version of pbr was bumped to 6.0.0 without
the matching change to requirements.txt

Change-Id: Iba20bb98d310995851fd23d0a735204a292cc3f3
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Doug Goldstein 2024-10-17 11:08:08 -05:00
parent 04eca76b93
commit d8cf598aa5
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# of appearance. Changing the order has an impact on the overall integration # of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
pbr!=2.1.0,>=2.0.0 # Apache-2.0 pbr>=6.0.0 # Apache-2.0
requests>=2.14.2 # Apache-2.0 requests>=2.14.2 # Apache-2.0
python-dateutil>=2.7.0 # BSD python-dateutil>=2.7.0 # BSD
stevedore>=1.29.0 # Apache-2.0 stevedore>=1.29.0 # Apache-2.0

View File

@ -16,5 +16,5 @@
import setuptools import setuptools
setuptools.setup( setuptools.setup(
setup_requires=['pbr>=2.0.0'], setup_requires=['pbr>=6.0.0'],
pbr=True) pbr=True)