The first version of setuptools to properly support pyproject.toml was 42 (40-41 were buggy). It is also necessary to specify `build-backend = "setuptools.build_meta"`, otherwise you get the (horrible) default `build-backend = "setuptools.build_meta:__legacy__"`.pull/9979/head
parent
bae58e6e49
commit
d2d9df3121
1 changed files with 2 additions and 1 deletions
@ -1,2 +1,3 @@ |
|||||||
[build-system] |
[build-system] |
||||||
requires = ["setuptools", "wheel"] |
requires = ["setuptools>=42", "wheel"] |
||||||
|
build-backend = "setuptools.build_meta" |
||||||
|
Loading…
Reference in new issue