mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-29 23:20:23 +00:00
9 lines
239 B
Python
9 lines
239 B
Python
# -*- coding: utf-8 -*-
|
|
"""Constants used by plexapi."""
|
|
|
|
# Library version
|
|
MAJOR_VERSION = 4
|
|
MINOR_VERSION = 11
|
|
PATCH_VERSION = 2
|
|
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
|
|
__version__ = f"{__short_version__}.{PATCH_VERSION}"
|