![Doug Goldstein](/assets/img/avatar_default.png)
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>
4 lines
91 B
TOML
4 lines
91 B
TOML
[build-system]
|
|
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
|
|
build-backend = "pbr.build"
|