Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « certbot « certbot - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe0a2a4169b8fb813164de84ed2008fbfec40a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Certbot client."""
# version number like 1.2.3a0, must have at least 2 parts, like 1.2
import sys
import warnings

__version__ = '1.23.0.dev0'

if sys.version_info[:2] == (3, 6):
    warnings.warn(
            "Python 3.6 support will be dropped in the next release of "
            "certbot. Please upgrade your Python version.",
            PendingDeprecationWarning,
    )  # pragma: no cover