From 54610728b35e11c551cc347ecb57f3daeba06c5b Mon Sep 17 00:00:00 2001 From: jakub-kocka <46049162+jakub-kocka@users.noreply.github.com> Date: Wed, 5 Nov 2025 08:01:09 +0000 Subject: [PATCH] docs: Updated README and pyproject.toml with current supported Python versions Auto-updated by update-readme workflow based on current ESP-IDF and Python support lifecycle. Changes: - Updated supported Python versions in README.md based on dynamic version detection - Updated ruff target-version and mypy python_version in pyproject.toml - Python versions are determined by ESP-IDF lifecycle and Python EOL dates --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a82e2d2..57dbb7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,6 +13,6 @@ disallow_incomplete_defs = false # Disallows defining functions with incomplete type annotations disallow_untyped_defs = false # Disallows defining functions without type annotations or with incomplete type annotations ignore_missing_imports = true # Suppress error messages about imports that cannot be resolved - python_version = "3.9" # Specifies the Python version used to parse and check the target program + python_version = "3.8" # Specifies the Python version used to parse and check the target program warn_no_return = true # Shows errors for missing return statements on some execution paths warn_return_any = true # Shows a warning when returning a value with type Any from a function declared with a non- Any return type