From b44cd9f4df70060cc75fa9f5f6bb3328cd24233b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Pottb=C3=A4cker?= <1104693+fpottbaecker@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:08:35 +0200 Subject: [PATCH] fix: Correct plugin name in plugin section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Pottbäcker <1104693+fpottbaecker@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6a88211..3a659a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ python = "^3.8.1" poetry = ">= 1.3, < 1.9" [tool.poetry.plugins."poetry.plugin"] -demo = "poetry_plugin_pypi_mirror.plugins:PyPIMirrorPlugin" +pypi_mirror = "poetry_plugin_pypi_mirror.plugins:PyPIMirrorPlugin" [tool.poetry.group.dev.dependencies] black = "^23.7.0"