fix(version): add tomli fallback for Python < 3.11
Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled

- Add conditional runtime dependency on tomli for Python < 3.11
- Fix crash on CentOS / Python 3.9 when reading pyproject.toml
- Ensure version command works consistently across distros

https://chatgpt.com/share/693ea1cb-41a0-800f-b4dc-4ff507eb60c6
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-14 12:38:43 +01:00
parent 7674762c9a
commit 03e414cc9f

View File

@@ -19,7 +19,8 @@ authors = [
# Base runtime dependencies # Base runtime dependencies
dependencies = [ dependencies = [
"PyYAML>=6.0" "PyYAML>=6.0",
"tomli; python_version < \"3.11\"",
] ]
[project.urls] [project.urls]