feat: Deprecate Python 3.9

BREAKING CHANGE:
- Minimal supported Python version is now 3.10.
This commit is contained in:
Peter Dragun
2025-07-28 09:56:45 +02:00
parent 84b4605ffa
commit 519042a1e2
20 changed files with 49 additions and 44 deletions

View File

@@ -3,11 +3,11 @@
# This is a port of detect_python.sh. More information are provided there.
set OLDEST_PYTHON_SUPPORTED_MAJOR 3
set OLDEST_PYTHON_SUPPORTED_MINOR 9
set OLDEST_PYTHON_SUPPORTED_MINOR 10
set -x ESP_PYTHON python
for p_cmd in python3 python python3.9 python3.10 python3.11 python3.12 python3.13;
for p_cmd in python3 python python3.10 python3.11 python3.12 python3.13;
$p_cmd --version >/dev/null 2>&1; or continue
echo "Checking \"$p_cmd\" ..."