Open codedawi opened 1 year ago
Poetry recommends using poetry-core and specifically poetry.core.masonry.api as the build backend to reduce dependencies required for building package. See poetry documentation: https://python-poetry.org/docs/pyproject/#poetry-and-pep-517.
poetry-core
poetry.core.masonry.api
[build-system] -requires = ["poetry>=0.12"] -build-backend = "poetry.masonry.api" +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"
Please note functionality will not change as poetry.masonry.api simply imports peotry.core.masonry.api methods.
poetry.masonry.api
peotry.core.masonry.api
See #2199
Just FYI, it is recommended to migrate to poetry-core as the backend, since poetry doesn't expose build hooks for editable builds (unless using Poetry itself).
poetry
Poetry recommends using
poetry-core
and specificallypoetry.core.masonry.api
as the build backend to reduce dependencies required for building package. See poetry documentation: https://python-poetry.org/docs/pyproject/#poetry-and-pep-517.Please note functionality will not change as
poetry.masonry.api
simply importspeotry.core.masonry.api
methods.Upvote & Fund