From 4406ced8a9e9464bea839cf19e667d632a462172 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Sun, 19 Jan 2025 08:07:27 -0500 Subject: [PATCH] Add reference to Poetry 2 requires-plugin (#1229) --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 1bf51904..7a6075de 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,16 @@ use the following command to install this package into the same environment: $ pipx inject nox nox-poetry ``` +`nox-poetry` relies on functionality from +[`poetry-export-plugin`](https://github.com/python-poetry/poetry-plugin-export), which +is bundled by default in Poetry 1, but not in Poetry >= 2. In Poetry 2, define it +as a required plugin in your `pyproject.toml`: + +```toml +[tool.poetry.requires-plugins] +poetry-plugin-export = ">=1.8" +``` + ## Requirements - Python 3.8+