From cb14b6db24b36099426dd10e11c97d1d7f36f330 Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Mon, 14 Oct 2024 17:49:43 +0000 Subject: [PATCH] [libshortfin] Bump nanobind to version 2.0.0 --- shortfin/python/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/shortfin/python/CMakeLists.txt b/shortfin/python/CMakeLists.txt index a8ebfeaa0..adf9d7879 100644 --- a/shortfin/python/CMakeLists.txt +++ b/shortfin/python/CMakeLists.txt @@ -11,12 +11,10 @@ # Others. # nanobind -# Pinned to a pre 2.2.0 commit hash which includes free threaded support. -# TODO: Bump to 2.2.0 when available. FetchContent_Declare( nanobind GIT_REPOSITORY https://github.com/wjakob/nanobind.git - GIT_TAG 8ce0dee7f62add575f85c0de386a9c819e4d50af # HEAD > 2.1.0 + GIT_TAG 784efa2a0358a4dc5432c74f5685ee026e20f2b6 # 2.2.0 ) FetchContent_MakeAvailable(nanobind)