Skip to content

Commit ae506ed

Browse files
committed
Use the non-legacy setuptools backend in pyproject.toml
Use the regular `setuptools.build_meta` backend rather than the `__legacy__` backend. The latter was never meant to be used explicitly in `pyproject.toml` files but rather as implicit fallback in tools such as pip(1). See e.g.: pypa/setuptools#1689 Signed-off-by: Michał Górny <[email protected]>
1 parent c84abfd commit ae506ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = ["setuptools>=40.8.0"]
3-
build-backend = "setuptools.build_meta:__legacy__"
3+
build-backend = "setuptools.build_meta"
44

55
# TODO: Remove when https://github.com/mgedmin/check-manifest/pull/155 released
66
[tool.check-manifest]

0 commit comments

Comments
 (0)