Skip to content

Commit 2a3c754

Browse files
committed
Suppress warnings
1 parent 7b8e782 commit 2a3c754

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/_libs/arrow_string_accumulations.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class ArrowStringAccumulation {
143143
ArrowArrayStreamMove(stream, stream_.get());
144144
}
145145

146-
std::pair<nb::capsule, nb::capsule> Accumulate(nb::object requested_schema) {
146+
std::pair<nb::capsule, nb::capsule> Accumulate(nb::object) {
147147
struct ArrowSchemaView schema_view{};
148148
NANOARROW_THROW_NOT_OK(
149149
ArrowSchemaViewInit(&schema_view, schema_.get(), nullptr));

pandas/_libs/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ foreach ext_name, ext_dict : libs_sources
122122
)
123123
endforeach
124124

125-
nanobind_dep = dependency('nanobind')
125+
nanobind_dep = dependency('nanobind', include_type: 'system')
126126
nanoarrow_dep = dependency('nanoarrow')
127127
py.extension_module(
128128
'arrow_string_accumulations',

0 commit comments

Comments
 (0)