From 0283310772f35e596af770e5785c03b8461f2b4f Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 14 Dec 2025 12:51:25 +0100 Subject: [PATCH] fix(pyproject): correct tomli environment marker for Python < 3.11 - 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 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0325a8c..7828fb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ authors = [ # Base runtime dependencies dependencies = [ "PyYAML>=6.0", - "tomli; python_version < \"3.11\"", + 'tomli; python_version < "3.11"', ] [project.urls]