Skip to content

Commit ca32888

Browse files
jakub-kockagithub-actions[bot]
authored andcommitted
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
1 parent f6205e2 commit ca32888

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Supported architectures:
1515
- ARM64
1616

1717
Supported Python versions:
18+
* 3.14
1819
* 3.13
1920
* 3.12
2021
* 3.11

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
disallow_incomplete_defs = false # Disallows defining functions with incomplete type annotations
1414
disallow_untyped_defs = false # Disallows defining functions without type annotations or with incomplete type annotations
1515
ignore_missing_imports = true # Suppress error messages about imports that cannot be resolved
16-
python_version = "3.9" # Specifies the Python version used to parse and check the target program
16+
python_version = "3.8" # Specifies the Python version used to parse and check the target program
1717
warn_no_return = true # Shows errors for missing return statements on some execution paths
1818
warn_return_any = true # Shows a warning when returning a value with type Any from a function declared with a non- Any return type

0 commit comments

Comments
 (0)