Revert "feat(tools): use ESP_PYTHON during install"

This change seems to be causing problems on macos. Let's revert it
for now and investigate.

This reverts commit 6a7a7317f2.
This commit is contained in:
Frantisek Hrbata
2023-07-21 09:32:33 +02:00
parent 42e18dde97
commit 6936c2d8fc
2 changed files with 4 additions and 6 deletions

View File

@@ -5,10 +5,9 @@
set OLDEST_PYTHON_SUPPORTED_MAJOR 3
set OLDEST_PYTHON_SUPPORTED_MINOR 7
set -q ESP_PYTHON; or set PYLIST python3 python python3.7 python3.8 python3.9 python3.10 python3.11 python3.12
set -q ESP_PYTHON; or set -x ESP_PYTHON python
set -x ESP_PYTHON python
for p_cmd in $PYLIST;
for p_cmd in python3 python python3.7 python3.8 python3.9 python3.10 python3.11 python3.12;
$p_cmd --version >/dev/null 2>&1; or continue
echo "Checking \"$p_cmd\" ..."