From e01d821314c74a361f406ea389cdadbada5e47f9 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 27 Nov 2025 23:00:09 +0100 Subject: [PATCH] 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 --- backend/python/diffusers/install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/python/diffusers/install.sh b/backend/python/diffusers/install.sh index 32befa8e6..ffa217edc 100755 --- a/backend/python/diffusers/install.sh +++ b/backend/python/diffusers/install.sh @@ -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