From a76a4272d4abb510303c4becbaa418455bb97496 Mon Sep 17 00:00:00 2001 From: Thibaut Goetghebuer-Planchon Date: Mon, 28 Jul 2025 11:30:29 +0100 Subject: [PATCH] Use pybind11_bazel.pybind_extension instead of tensorflow.pybind_extension --- tosa_converter_for_tflite/BUILD | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tosa_converter_for_tflite/BUILD b/tosa_converter_for_tflite/BUILD index f2cfffe..aafd70c 100644 --- a/tosa_converter_for_tflite/BUILD +++ b/tosa_converter_for_tflite/BUILD @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -load("@org_tensorflow//tensorflow:tensorflow.default.bzl", "pybind_extension") +load("@pybind11_bazel//:build_defs.bzl", "pybind_extension") cc_library( name = "tosa_converter_for_tflite_lib", @@ -23,7 +23,6 @@ pybind_extension( ], deps = [ ":tosa_converter_for_tflite_lib", - "@pybind11", ], ) -- GitLab