From 36a439f243ca00722987810a953c3166d4469129 Mon Sep 17 00:00:00 2001 From: frederik Date: Sun, 10 Nov 2024 14:31:14 +0100 Subject: [PATCH] add python 3.13 support --- scripts/install_helpers.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/install_helpers.sh b/scripts/install_helpers.sh index 780cb2c..18117fe 100644 --- a/scripts/install_helpers.sh +++ b/scripts/install_helpers.sh @@ -15,6 +15,9 @@ get_tf_whl () { aarch64-312) WHL=tflite_runtime-2.17.1-cp312-cp312-linux_aarch64.whl ;; + aarch64-313) + WHL=tflite_runtime-2.17.1-cp313-cp313-linux_aarch64.whl + ;; x86_64-39) WHL=tflite_runtime-2.11.0-cp39-cp39-linux_x86_64.whl ;; @@ -24,6 +27,9 @@ get_tf_whl () { x86_64-312) WHL=tflite_runtime-2.17.1-cp312-cp312-linux_x86_64.whl ;; + x86_64-313) + WHL=tflite_runtime-2.17.1-cp313-cp313-linux_x86_64.whl + ;; *) echo "No tflite version found for ${ARCH}-${PY_VERSION}" WHL=''