From f47601bc7d38a59338b43c1f8e110786e14f598d Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 8 Jan 2026 18:59:33 +0100 Subject: [PATCH] chore(l4t-12): do not use python 3.12 (wheels are only for 3.10) Signed-off-by: Ettore Di Giacinto --- backend/python/diffusers/install.sh | 2 +- backend/python/vibevoice/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/python/diffusers/install.sh b/backend/python/diffusers/install.sh index 09a5efea7694..2e437de089f4 100755 --- a/backend/python/diffusers/install.sh +++ b/backend/python/diffusers/install.sh @@ -17,7 +17,7 @@ if [ "x${BUILD_PROFILE}" == "xintel" ]; then fi # Use python 3.12 for l4t -if [ "x${BUILD_PROFILE}" == "xl4t12" ] || [ "x${BUILD_PROFILE}" == "xl4t13" ]; then +if [ "x${BUILD_PROFILE}" == "xl4t13" ]; then PYTHON_VERSION="3.12" PYTHON_PATCH="12" PY_STANDALONE_TAG="20251120" diff --git a/backend/python/vibevoice/install.sh b/backend/python/vibevoice/install.sh index a7603aebce11..89d9b715e047 100755 --- a/backend/python/vibevoice/install.sh +++ b/backend/python/vibevoice/install.sh @@ -17,7 +17,7 @@ if [ "x${BUILD_PROFILE}" == "xintel" ]; then fi # Use python 3.12 for l4t -if [ "x${BUILD_PROFILE}" == "xl4t12" ] || [ "x${BUILD_PROFILE}" == "xl4t13" ]; then +if [ "x${BUILD_PROFILE}" == "xl4t13" ]; then PYTHON_VERSION="3.12" PYTHON_PATCH="12" PY_STANDALONE_TAG="20251120"