mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-04-12 20:52:24 -05:00
9 lines
215 B
Python
9 lines
215 B
Python
"""Constants used by plexapi."""
|
|
|
|
# Library version
|
|
MAJOR_VERSION = 4
|
|
MINOR_VERSION = 18
|
|
PATCH_VERSION = 0
|
|
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
|
|
__version__ = f"{__short_version__}.{PATCH_VERSION}"
|