chore: Add Python 3.12 support for l4t build profile (#7384)

Set Python version to 3.12 for l4t build profile.

Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
This commit is contained in:
Ettore Di Giacinto
2025-11-27 23:00:09 +01:00
committed by GitHub
parent 0d781e6b7e
commit e01d821314

View File

@@ -16,4 +16,10 @@ if [ "x${BUILD_PROFILE}" == "xintel" ]; then
EXTRA_PIP_INSTALL_FLAGS+=" --upgrade --index-strategy=unsafe-first-match"
fi
# Use python 3.12 for l4t
if [ "x${BUILD_PROFILE}" == "xl4t" ]; then
PYTHON_VERSION="3.12"
PYTHON_PATCH="12"
fi
installRequirements