Update nanobind to commit e507b118927bc3a12446d0ca235e1baaf343932e.

This includes https://github.com/wjakob/nanobind/pull/1191, which fixes a data race observed in free threading builds.

PiperOrigin-RevId: 825304073
This commit is contained in:
Peter Hawkins 2025-10-28 19:04:37 -07:00 committed by TensorFlower Gardener
parent a7fb82d82d
commit 6efea71d95

View File

@ -5,8 +5,8 @@ load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
def repo():
tf_http_archive(
name = "nanobind",
strip_prefix = "nanobind-2.9.2",
sha256 = "8ce3667dce3e64fc06bfb9b778b6f48731482362fb89a43da156632266cd5a90",
urls = tf_mirror_urls("https://github.com/wjakob/nanobind/archive/refs/tags/v2.9.2.tar.gz"),
strip_prefix = "nanobind-e507b118927bc3a12446d0ca235e1baaf343932e",
sha256 = "95004c4cd1f3e7417b71ff25be9cfba7e8ad79e570248e377815bc980c8b3c73",
urls = tf_mirror_urls("https://github.com/wjakob/nanobind/archive/e507b118927bc3a12446d0ca235e1baaf343932e.tar.gz"),
build_file = "//third_party/nanobind:nanobind.BUILD",
)