diff --git a/arrow-pyarrow-integration-testing/Cargo.toml b/arrow-pyarrow-integration-testing/Cargo.toml index 2a4e83313065..8dae4e225890 100644 --- a/arrow-pyarrow-integration-testing/Cargo.toml +++ b/arrow-pyarrow-integration-testing/Cargo.toml @@ -24,7 +24,7 @@ repository = "https://github.com/apache/arrow-rs" authors = ["Apache Arrow "] license = "Apache-2.0" keywords = ["arrow"] -edition = "2021" +edition = "2024" rust-version = "1.85" publish = false diff --git a/arrow-pyarrow-integration-testing/src/lib.rs b/arrow-pyarrow-integration-testing/src/lib.rs index 86c17ab79caa..7d5d63c1d50d 100644 --- a/arrow-pyarrow-integration-testing/src/lib.rs +++ b/arrow-pyarrow-integration-testing/src/lib.rs @@ -27,7 +27,7 @@ use pyo3::exceptions::PyValueError; use pyo3::prelude::*; use pyo3::wrap_pyfunction; -use arrow::array::{make_array, Array, ArrayData, ArrayRef, Int64Array}; +use arrow::array::{Array, ArrayData, ArrayRef, Int64Array, make_array}; use arrow::compute::kernels; use arrow::datatypes::{DataType, Field, Schema}; use arrow::error::ArrowError;