From d1d514b586ca00892c44205d21eb1c90d41311c1 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Thu, 21 Aug 2025 13:22:34 +0200 Subject: [PATCH] add pyproject.toml to support pip 23.1 pip 23.1 removed the "setup.py install" fallback for projects that do not have pyproject.toml and now uses a pyproject.toml which is vendored in pip. To address that, this change adds the minimal pyproject.toml to enable pbr to be properly used to build editable wheels. Change-Id: Id7156e4069cce7ffbdda6ab5cf1af9c5a4d23b67 Signed-off-by: Dmitriy Rabotyagov --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..5e862a95 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["pbr>=6.0.0", "setuptools>=64.0.0"] +build-backend = "pbr.build"