From 85c9979c30cbdc543ab48deadf3bc96ef22803c8 Mon Sep 17 00:00:00 2001 From: arl Date: Fri, 7 Oct 2022 19:31:43 -0400 Subject: [PATCH] docs(plugins): change the example's minimum poetry version to 1.2 this is the first poetry version with plugin support, so plugins cannot be compatible with any version before 1.2. (cherry picked from commit 8a500f053b756616be99454939bcbf7ad42c7e3b) --- docs/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins.md b/docs/plugins.md index 7fc8bfe081b..1db8c065f0f 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -39,7 +39,7 @@ version = "1.0.0" # ... [tool.poetry.dependencies] python = "^3.7" -poetry = "^1.0" +poetry = "^1.2" [tool.poetry.plugins."poetry.plugin"] demo = "poetry_demo_plugin.plugin:MyPlugin"