From 38a49894154917cd4fa74238df257958a1c7259c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 3 Feb 2022 14:20:15 +0100 Subject: [PATCH] Fix build-backend values in the example plugins 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. --- example_isort_formatting_plugin/pyproject.toml | 2 +- example_isort_sorting_plugin/pyproject.toml | 2 +- example_shared_isort_profile/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example_isort_formatting_plugin/pyproject.toml b/example_isort_formatting_plugin/pyproject.toml index 25ce01747..1b0e68324 100644 --- a/example_isort_formatting_plugin/pyproject.toml +++ b/example_isort_formatting_plugin/pyproject.toml @@ -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" diff --git a/example_isort_sorting_plugin/pyproject.toml b/example_isort_sorting_plugin/pyproject.toml index cafcfcaaa..d82d1aa74 100644 --- a/example_isort_sorting_plugin/pyproject.toml +++ b/example_isort_sorting_plugin/pyproject.toml @@ -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" diff --git a/example_shared_isort_profile/pyproject.toml b/example_shared_isort_profile/pyproject.toml index 48fa50850..cee710d69 100644 --- a/example_shared_isort_profile/pyproject.toml +++ b/example_shared_isort_profile/pyproject.toml @@ -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"