From f27c9e14c98a3309476ca2bb757b6cfd21c2e2b4 Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Thu, 11 Dec 2025 11:31:51 -0800 Subject: [PATCH] Add nginx and apache extras w/ their dependencies --- certbot/pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/certbot/pyproject.toml b/certbot/pyproject.toml index 91a9c12bf..ecb3fffdf 100644 --- a/certbot/pyproject.toml +++ b/certbot/pyproject.toml @@ -73,6 +73,15 @@ test = [ "uv", "wheel", ] +nginx = [ + # PyOpenSSL>=25.0.0 is just needed to satisfy mypy right now so this dependency can probably be + # relaxed to >=24.0.0 if needed. + 'PyOpenSSL>=25.0.0', + 'pyparsing>=2.4.7', +] +apache = [ + 'python-augeas', +] all = [ "certbot[dev,docs,test]" ]