1234567891011121314151617181920212223242526272829303132333435 |
- # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
- # For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
- from typing import Tuple
- __version__ = "2.12.2"
- def get_numversion_from_version(v: str) -> Tuple:
- """Kept for compatibility reason
- See https://github.com/PyCQA/pylint/issues/4399
- https://github.com/PyCQA/pylint/issues/4420,
- """
- v = v.replace("pylint-", "")
- version = []
- for n in v.split(".")[0:3]:
- try:
- version.append(int(n))
- except ValueError:
- num = ""
- for c in n:
- if c.isdigit():
- num += c
- else:
- break
- try:
- version.append(int(num))
- except ValueError:
- version.append(0)
- while len(version) != 3:
- version.append(0)
- return tuple(version)
- numversion = get_numversion_from_version(__version__)
|