From 59c0955659c92d567740e81ff9f90fc73bc439ae Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 25 Mar 2021 16:43:58 -0700 Subject: [PATCH] add minimum poetry version --- certbot/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/certbot/setup.py b/certbot/setup.py index c15feece8..0f54179a3 100644 --- a/certbot/setup.py +++ b/certbot/setup.py @@ -79,7 +79,9 @@ dev_extras = [ 'ipdb', 'mypy', 'PyGithub', - 'poetry', + # 1.1.0+ is required for poetry to use the poetry-core library for the + # build system declared in tools/pinning/pyproject.toml. + 'poetry>=1.1.0', 'pylint', 'pytest', 'pytest-cov',