mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-03-12 04:35:40 -07:00
10 lines
240 B
Python
10 lines
240 B
Python
# -*- coding: utf-8 -*-
|
|
"""Constants used by plexapi."""
|
|
|
|
# Library version
|
|
MAJOR_VERSION = 4
|
|
MINOR_VERSION = 15
|
|
PATCH_VERSION = 15
|
|
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
|
|
__version__ = f"{__short_version__}.{PATCH_VERSION}"
|