From 185c55d79301f1b3a6505b8432440f7a3994e79a Mon Sep 17 00:00:00 2001 From: Nicholas Junge Date: Mon, 15 Apr 2024 11:57:02 +0200 Subject: [PATCH] Switch git override to stable BCR tag for nanobind_bazel (#1778) This comes following the first BCR release of nanobind_bazel. Feature-wise, nothing substantial has changed, except that the extensions are stripped of debug info when built in release mode, which reduces clutter in the symbol tables. No stubgen yet, since nanobind v2 has not been released yet. --- MODULE.bazel | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 45238d6f..ca7bff65 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -42,9 +42,4 @@ use_repo(pip, "tools_pip_deps") # -- bazel_dep definitions -- # -bazel_dep(name = "nanobind_bazel", version = "", dev_dependency = True) -git_override( - module_name = "nanobind_bazel", - commit = "97e3db2744d3f5da244a0846a0644ffb074b4880", - remote = "https://github.com/nicholasjng/nanobind-bazel", -) +bazel_dep(name = "nanobind_bazel", version = "1.0.0", dev_dependency = True)