Skip to content

Commit 16feee1

Browse files
authored
Fix build-backend setting (#734)
### Changes included in this PR Fixes the build-backend setting in pyproject.toml to use the correct 'poetry.core.masonry.api' ### Current behavior Currently `pip install .` fails on Python 3.13.3 with > pip._vendor.pyproject_hooks._impl.BackendUnavailable: Cannot import 'poetry.masonry.api' ### New behavior `pip install .` works again ### Impact `pip install .` works again ### Checklist 1. [ ] Does your submission pass the existing tests? 2. [ ] Are there new tests that cover these additions/changes? 3. [x] Have you linted your code locally before submission? Signed-off-by: Kai-Uwe Hermann <[email protected]>
1 parent c7a3907 commit 16feee1

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
@@ -56,4 +56,4 @@ profile = "black"
5656

5757
[build-system]
5858
requires = ["poetry-core>=2.0.0,<3.0.0"]
59-
build-backend = "poetry.masonry.api"
59+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)