_version.py python
10 lines 346 B
Raw
sha256:d8316ffae901be06347e16ab55be11868eb519dd16ade3e8aa16a99e662f7e62 baseline: rc14 re-baseline after rc3 store corruption recovery Human patch 35 days ago
1 """Single source of truth for the Muse package version.
2
3 All schema_version fields across the codebase read from here rather than
4 hardcoding a number. The version itself lives in ``pyproject.toml`` and is
5 injected into the installed package metadata at build time.
6 """
7
8 from importlib.metadata import version
9
10 __version__: str = version("muse")
File History 1 commit
sha256:d8316ffae901be06347e16ab55be11868eb519dd16ade3e8aa16a99e662f7e62 baseline: rc14 re-baseline after rc3 store corruption recovery Human patch 35 days ago