The min version of pbr was bumped to 2.0.0 in the other repos (eg. [1])
when python 2 was removed.

[1] bc9ef4a2a4d2286249057dfe9bb77604ff3b6885

Change-Id: I917e9d57a5c2fb1403c2e8b30846edf5704837ec
This commit is contained in:
Takashi Kajinami
2024-10-27 00:22:37 +09:00
parent 0cb71de7e2
commit a4572ee7b8
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
# 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.
pbr>=1.4 # Apache-2.0
pbr>=2.0 # Apache-2.0
cliff>=1.17.0 # Apache-2.0
osc-lib>=1.0.1 # Apache-2.0
oslo.i18n>=1.5.0 # Apache-2.0

View File

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