From 62fa25370866724574e702f32400966d33435810 Mon Sep 17 00:00:00 2001 From: Nicholas Junge Date: Tue, 24 Dec 2024 12:02:01 +0100 Subject: [PATCH] Bump to v2.4.0 (#52) * Update to nanobind v2.4.0 * Update nanobind_bazel to v2.4.0 --- MODULE.bazel | 2 +- internal_configure.bzl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 5030d75..275107e 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "nanobind_bazel", - version = "2.2.0", + version = "2.4.0", compatibility_level = 1, ) diff --git a/internal_configure.bzl b/internal_configure.bzl index 526a0a7..8e35172 100644 --- a/internal_configure.bzl +++ b/internal_configure.bzl @@ -17,12 +17,12 @@ def _internal_configure_extension_impl(_): urls = ["https://github.com/Tessil/robin-map/archive/refs/tags/v%s.tar.gz" % robin_map_version], ) - nanobind_version = "2.2.0" + nanobind_version = "2.4.0" http_archive( name = "nanobind", build_file = "//:nanobind.BUILD", strip_prefix = "nanobind-%s" % nanobind_version, - integrity = "sha256-v7/H5XWfFmnk3bSHUrHdxWR9FDDpRhTW+GJt8dUI5lo=", + integrity = "sha256-uzXertfvrFAp7R4ziApBVjg1L3V9SSB6jmAT/vtsSac=", urls = ["https://github.com/wjakob/nanobind/archive/refs/tags/v%s.tar.gz" % nanobind_version], )