From 68d812e6dd48bae01940a216fdd0768e4ada8192 Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Wed, 19 Jul 2023 13:10:35 -0700 Subject: [PATCH] Add pytz as a dependency for integration tests (#9737) --- certbot-ci/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/certbot-ci/setup.py b/certbot-ci/setup.py index ec632a471..0ea188e57 100644 --- a/certbot-ci/setup.py +++ b/certbot-ci/setup.py @@ -26,6 +26,7 @@ install_requires = [ # installation on Linux. 'pywin32>=300 ; sys_platform == "win32"', 'pyyaml', + 'pytz>=2019.3', 'requests', 'setuptools', 'types-python-dateutil'