Skip to content

Commit fedef66

Browse files
authored
Migrate arrow-pyarrow to Rust 2024 (#8485)
# Which issue does this PR close? - Contribute to #6827 # Rationale for this change Splitting up #8227. # What changes are included in this PR? Migrate `arrow-pyarrow` to Rust 2024 # Are these changes tested? CI # Are there any user-facing changes? Yes
1 parent dfbb9f1 commit fedef66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

arrow-pyarrow/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ authors = { workspace = true }
2525
license = { workspace = true }
2626
keywords = { workspace = true }
2727
include = { workspace = true }
28-
edition = { workspace = true }
28+
edition = "2024"
2929
rust-version = { workspace = true }
3030

3131
[lib]

arrow-pyarrow/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ use arrow_array::ffi;
6464
use arrow_array::ffi::{FFI_ArrowArray, FFI_ArrowSchema};
6565
use arrow_array::ffi_stream::{ArrowArrayStreamReader, FFI_ArrowArrayStream};
6666
use arrow_array::{
67-
make_array, RecordBatch, RecordBatchIterator, RecordBatchOptions, RecordBatchReader,
68-
StructArray,
67+
RecordBatch, RecordBatchIterator, RecordBatchOptions, RecordBatchReader, StructArray,
68+
make_array,
6969
};
7070
use arrow_data::ArrayData;
7171
use arrow_schema::{ArrowError, DataType, Field, Schema};

0 commit comments

Comments
 (0)