mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
This fixes the version numbers in `km-config` which broke with #13854. This also fixes opening the download page in `km-config` because that uses a version number in the URL. Fixes: #14031 Follow-up-of: #13854
15 lines
587 B
Python
15 lines
587 B
Python
#!/usr/bin/python3
|
|
|
|
# Store the version here so:
|
|
# 1) we don't load dependencies by storing it in __init__.py
|
|
# 2) we can import it in setup.py for the same reason
|
|
# 3) we can import it into your module module
|
|
__version__ = "__KEYMAN_VERSION__"
|
|
__versionwithtag__ = "__KEYMAN_VERSION_WITH_TAG__"
|
|
__majorversion__ = "__KEYMAN_VERSION_MAJOR__"
|
|
__releaseversion__ = "__KEYMAN_VERSION_RELEASE__"
|
|
__tier__ = "__KEYMAN_TIER__"
|
|
__pkgversion__ = "(local)"
|
|
__environment__ = "__KEYMAN_VERSION_ENVIRONMENT__"
|
|
__uploadsentry__ = "__UPLOAD_SENTRY__"
|
|
__versiongittag__ = "__KEYMAN_VERSION_GIT_TAG__"
|