_version.py
python
sha256:0e3697f29ae6c62f39818a19861d4db6276465de16481fadf866eb93cbf4aae4
test: validate staging push and MP workflow for aaronrene
Human
16 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:0e3697f29ae6c62f39818a19861d4db6276465de16481fadf866eb93cbf4aae4
test: validate staging push and MP workflow for aaronrene
Human
16 days ago