Merge "add pyproject.toml to support pip 23.1"

This commit is contained in:
Zuul 2024-11-09 04:17:33 +00:00 committed by Gerrit Code Review
commit 488bc76cab
3 changed files with 5 additions and 2 deletions

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[build-system]
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
build-backend = "pbr.build"

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>=3.1.1 # Apache-2.0
pbr>=6.0.0 # Apache-2.0
SQLAlchemy>=1.4.0 # MIT
alembic>=1.4.2 # MIT
automaton>=1.9.0 # Apache-2.0

View File

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