fix(pyproject): correct tomli environment marker 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

- Use proper PEP 508 marker quoting for tomli dependency
- Ensure tomli is installed on Python 3.9/3.10 (e.g. CentOS)
- Fix runtime crash when reading pyproject.toml

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

View File

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