add pyproject.toml to support pip 23.1
pip 23.1 removed the "setup.py install" for projects that do not have their own pyproject.toml by having a hardcoded one within pip. To address that, this change adds the minimal pyproject.toml to enable pbr to be properly used to build editable wheels. See https://pip.pypa.io/en/stable/news/#v23-1 and https://github.com/pypa/pip/issues/8368 for more info. Change-Id: Id513bfda09688fc9ba7ea8dc7ae7304bf06994e6 Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
parent
7ca193c79d
commit
b5c52e7cb0
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
@ -0,0 +1,3 @@
|
||||
[build-system]
|
||||
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
|
||||
build-backend = "pbr.build"
|
@ -6,7 +6,7 @@
|
||||
# of appearance. Changing the order has an impact on the overall integration
|
||||
# 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
|
||||
Flask>=1.0.2 # BSD
|
||||
requests>=2.14.2 # Apache-2.0
|
||||
tenacity>=6.2.0 # Apache-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user