spiegel-keyman/linux/keyman-config/keyman_config/version.py.in
Eberhard Beilharz 3cb9fe2a65
fix(linux): fix variable replacements
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
2025-05-22 16:20:18 +02:00

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__"