Skip to content

Commit 2c90943

Browse files
committed
Add pyproject.toml to support pip version 23.1
Version 23.1 of pip removes the "setup.py install" if no pyproject.toml is present. This change adds a minimal pyproject.toml to use pbr to build wheels. See https://pip.pypa.io/en/stable/news/#v23-1 and pypa/pip#8368 for more info.
1 parent 527bcd2 commit 2c90943

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[build-system]
2+
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
3+
build-backend = "pbr.build"
4+

0 commit comments

Comments
 (0)