Skip to content

Commit

Permalink
Use poetry-core build backend (#589)
Browse files Browse the repository at this point in the history
Replace the deprecated poetry.masonry.api build backend with the more
modern poetry.core.masonry.api that avoids unnecessarily installing
whole poetry when building wheels.  The rationale is provided
on the project page: https://pypi.org/project/poetry-core/
  • Loading branch information
mgorny authored Jan 2, 2024
1 parent 78a1312 commit 0e0f51c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"


[tool.regarding]
Expand Down

0 comments on commit 0e0f51c

Please sign in to comment.