feat: Drop Python 3.7 support

This commit is contained in:
radim.karnis
2023-07-19 11:08:24 +02:00
parent 31d87a0c59
commit 8acde05a5c
13 changed files with 21 additions and 22 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 7
set OLDEST_PYTHON_SUPPORTED_MINOR 8
set -x ESP_PYTHON python
for p_cmd in python3 python python3.7 python3.8 python3.9 python3.10 python3.11 python3.12;
for p_cmd in python3 python python3.8 python3.9 python3.10 python3.11 python3.12;
$p_cmd --version >/dev/null 2>&1; or continue
echo "Checking \"$p_cmd\" ..."