-
-
Notifications
You must be signed in to change notification settings - Fork 141
Closed
Description
Currently:
Lines 54 to 56 in 7d826f0
[build-system] | |
requires = ["poetry>=1,<2"] | |
build-backend = "poetry.masonry.api" |
According to https://python-poetry.org/docs/pyproject/#poetry-and-pep-517
If your
pyproject.toml
file still references poetry directly as a build backend, you should update it to reference poetry_core instead.
Should be updated to,
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
This will significantly speed up the package installation process, since the entire poetry
dependency cone is currently being installed during isolated build per PEP517.
I can submit a PR if no objections.
Ambro17, KingDarBoja and Cito
Metadata
Metadata
Assignees
Labels
No labels