Skip to content

Commit

Permalink
Suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Jan 6, 2025
1 parent 7b8e782 commit 2a3c754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pandas/_libs/arrow_string_accumulations.cc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class ArrowStringAccumulation {
ArrowArrayStreamMove(stream, stream_.get());
}

std::pair<nb::capsule, nb::capsule> Accumulate(nb::object requested_schema) {
std::pair<nb::capsule, nb::capsule> Accumulate(nb::object) {
struct ArrowSchemaView schema_view{};
NANOARROW_THROW_NOT_OK(
ArrowSchemaViewInit(&schema_view, schema_.get(), nullptr));
Expand Down
2 changes: 1 addition & 1 deletion pandas/_libs/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ foreach ext_name, ext_dict : libs_sources
)
endforeach

nanobind_dep = dependency('nanobind')
nanobind_dep = dependency('nanobind', include_type: 'system')
nanoarrow_dep = dependency('nanoarrow')
py.extension_module(
'arrow_string_accumulations',
Expand Down

0 comments on commit 2a3c754

Please sign in to comment.