From 40e7f2ff88bb3d196095bf7edea0cdb2dff07053 Mon Sep 17 00:00:00 2001 From: Sebastian Jeltsch Date: Sat, 29 Nov 2025 22:37:40 +0100 Subject: [PATCH] Explicitly target python 3.12 with the pyright static type checker. #181 --- client/python/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/python/pyproject.toml b/client/python/pyproject.toml index 4f261167..89c87aac 100644 --- a/client/python/pyproject.toml +++ b/client/python/pyproject.toml @@ -30,7 +30,7 @@ line-length = 108 [tool.pyright] venvPath = "." venv = ".venv" +pythonVersion = "3.12" +pythonPlatform = "All" typeCheckingMode = "strict" -useLibraryCodeForTypes = true verboseOutput = true -reportMissingTypeStubs = "warning"