Server : Apache System : Linux dedi-14684855.grupobig.com 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : grupo692 ( 1004) PHP Version : 8.2.31 Disable Function : NONE Directory : /opt/certbot-venv/lib64/python3.9/site-packages/certbot/ |
"""Certbot client."""
import sys
import warnings
# version number like 1.2.3a0, must have at least 2 parts, like 1.2
__version__ = '4.2.0'
if sys.version_info[:2] == (3, 9):
warnings.warn(
"Python 3.9 support will be dropped in the next planned release of "
"certbot. Please upgrade your Python version.",
DeprecationWarning,
) # pragma: no cover