This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-22/mockenv/lib/python3.6/site-packages/kivy/_version.py
2022-07-22 16:13:59 +05:30

18 lines
416 B
Python

# This file is imported from __init__.py and exec'd from setup.py
MAJOR = 2
MINOR = 0
MICRO = 0
RELEASE = True
__version__ = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
if not RELEASE:
# if it's a rcx release, it's not proceeded by a period. If it is a
# devx release, it must start with a period
__version__ += 'rc4'
_kivy_git_hash = 'dedcb6bcabe3d8d6758dcee607e8c33b174d782b'
_kivy_build_date = '20201209'