Cours/venv/lib/python3.12/site-packages/watchdog/version.py

12 lines
349 B
Python
Raw Normal View History

2024-09-02 16:55:06 +00:00
from __future__ import annotations
# When updating this version number, please update the
# ``docs/source/global.rst.inc`` file as well.
VERSION_MAJOR = 5
VERSION_MINOR = 0
VERSION_BUILD = 0
VERSION_INFO = (VERSION_MAJOR, VERSION_MINOR, VERSION_BUILD)
VERSION_STRING = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_BUILD}"
__version__ = VERSION_INFO