Explicitly specify build-backend in pyproject.toml (#7742)

This commit is contained in:
KOLANICH 2020-04-10 14:46:21 +00:00 committed by GitHub
parent 8cca170ceb
commit 3764736f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
news/7740.trivial Normal file
View File

@ -0,0 +1 @@
Use PEP 517 layout by specifying ``build-backend``, so that ``pip`` can be built with tools (such as ``pep517``) that don't support the legacy layout.

View File

@ -1,5 +1,6 @@
[build-system] [build-system]
requires = ["setuptools", "wheel"] requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.towncrier] [tool.towncrier]
package = "pip" package = "pip"