feat: Drop Python 3.8 support

Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
This commit is contained in:
Frantisek Hrbata
2024-10-24 12:22:25 +02:00
committed by BOT
parent 1689c7e14f
commit a4acbd2758
12 changed files with 17 additions and 17 deletions

View File

@@ -8,11 +8,11 @@
# 3. If required version of python is not found, script will fail
OLDEST_PYTHON_SUPPORTED_MAJOR=3
OLDEST_PYTHON_SUPPORTED_MINOR=8
OLDEST_PYTHON_SUPPORTED_MINOR=9
ESP_PYTHON=python
for p_cmd in python3 python python3.8 python3.9 python3.10 python3.11 python3.12; do
for p_cmd in python3 python python3.9 python3.10 python3.11 python3.12 python3.13; do
$p_cmd --version >/dev/null 2>&1 || continue
echo "Checking \"$p_cmd\" ..."