From a2d403209d4e62c083e558606760be30e4482bd6 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. --- 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"