Skip to content

Commit d1038bf

Browse files
authored
Migrate arrow-pyarrow-integration-testing to Rust 2024 (#8486)
# 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-integration-testing` to Rust 2024 # Are these changes tested? CI # Are there any user-facing changes? Yes
1 parent 447bf3e commit d1038bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arrow-pyarrow-integration-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repository = "https://github.com/apache/arrow-rs"
2424
authors = ["Apache Arrow <[email protected]>"]
2525
license = "Apache-2.0"
2626
keywords = ["arrow"]
27-
edition = "2021"
27+
edition = "2024"
2828
rust-version = "1.85"
2929
publish = false
3030

arrow-pyarrow-integration-testing/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use pyo3::exceptions::PyValueError;
2727
use pyo3::prelude::*;
2828
use pyo3::wrap_pyfunction;
2929

30-
use arrow::array::{make_array, Array, ArrayData, ArrayRef, Int64Array};
30+
use arrow::array::{Array, ArrayData, ArrayRef, Int64Array, make_array};
3131
use arrow::compute::kernels;
3232
use arrow::datatypes::{DataType, Field, Schema};
3333
use arrow::error::ArrowError;

0 commit comments

Comments
 (0)