Change nanobind include to quoted form (#14376)
Worked better with a downstream bazel build.
diff --git a/runtime/bindings/python/binding.h b/runtime/bindings/python/binding.h
index 71168be..4465879 100644
--- a/runtime/bindings/python/binding.h
+++ b/runtime/bindings/python/binding.h
@@ -7,17 +7,16 @@
#ifndef IREE_BINDINGS_PYTHON_IREE_BINDING_H_
#define IREE_BINDINGS_PYTHON_IREE_BINDING_H_
-#include <nanobind/nanobind.h>
-#include <nanobind/ndarray.h>
-#include <nanobind/stl/optional.h>
-#include <nanobind/stl/string.h>
-#include <nanobind/stl/string_view.h>
-#include <nanobind/stl/vector.h>
-
#include <optional>
#include <vector>
#include "iree/base/api.h"
+#include "nanobind/nanobind.h"
+#include "nanobind/ndarray.h"
+#include "nanobind/stl/optional.h"
+#include "nanobind/stl/string.h"
+#include "nanobind/stl/string_view.h"
+#include "nanobind/stl/vector.h"
namespace iree {
namespace python {
diff --git a/runtime/bindings/python/status_utils.h b/runtime/bindings/python/status_utils.h
index 612f335..03181ae 100644
--- a/runtime/bindings/python/status_utils.h
+++ b/runtime/bindings/python/status_utils.h
@@ -7,9 +7,8 @@
#ifndef IREE_BINDINGS_PYTHON_IREE_COMMON_STATUS_UTILS_H_
#define IREE_BINDINGS_PYTHON_IREE_COMMON_STATUS_UTILS_H_
-#include <nanobind/nanobind.h>
-
#include "iree/base/api.h"
+#include "nanobind/nanobind.h"
namespace iree {
namespace python {