Skip to content

Commit

Permalink
Fix build-backend values in the example plugins
Browse files Browse the repository at this point in the history
The example plugins are declaring a requirement on poetry-core but using
the "main" poetry build backend.  Correct them to use the poetry.core
backend.
  • Loading branch information
mgorny committed Feb 3, 2022
1 parent c6a4196 commit 38a4989
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example_isort_formatting_plugin/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ black = ">20.08b1"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion example_isort_sorting_plugin/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ natsort = ">=7.1.1"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion example_shared_isort_profile/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ python = ">=3.6"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api"
build-backend = "poetry.core.masonry.api"

0 comments on commit 38a4989

Please sign in to comment.