summaryrefslogtreecommitdiff
path: root/pylint/__pkginfo__.py
blob: 518a4657a6ce8e3e3aeaea54639bba6cc8f45b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

from typing import Optional

__version__ = "2.8.0"
# For an official release, use 'alpha_version = False' and 'dev_version = None'
alpha_version: bool = False  # Release will be an alpha version if True (ex: '1.2.3a6')
dev_version: Optional[int] = 1

if dev_version is not None:
    if alpha_version:
        __version__ += f"a{dev_version}"
    else:
        __version__ += f".dev{dev_version}"