From 02efc8c5cae79ff272884d120caf95900cf35b3b Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Wed, 4 Oct 2023 16:22:13 -0700 Subject: [PATCH] Bump setup.py's ConfigArgParse version (#9784) I neglected to do this during #9678, so looks like some pip installs are failing to get the minimum required version. --- certbot/setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/certbot/setup.py b/certbot/setup.py index f607d558b..2c86a1446 100644 --- a/certbot/setup.py +++ b/certbot/setup.py @@ -28,10 +28,7 @@ install_requires = [ # simplicity. See https://github.com/certbot/certbot/issues/8761 for more # info. f'acme>={version}', - # We technically need ConfigArgParse 0.10.0 for Python 2.6 support, but - # saying so here causes a runtime error against our temporary fork of 0.9.3 - # in which we added 2.6 support (see #2243), so we relax the requirement. - 'ConfigArgParse>=0.9.3', + 'ConfigArgParse>=1.5.3', 'configobj>=5.0.6', 'cryptography>=3.2.1', 'distro>=1.0.1',