From 9d686df0cb0f8a63fb8ef0403ebe40675d0a8024 Mon Sep 17 00:00:00 2001 From: Ion Koutsouris <15728914+ion-elgreco@users.noreply.github.com> Date: Sat, 14 Sep 2024 11:51:17 +0200 Subject: [PATCH] bump bump bump --- Cargo.toml | 26 +++++++++++++------------- crates/core/src/kernel/scalars.rs | 3 ++- python/Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b61c02ac50..88121f0e08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,19 +30,19 @@ delta_kernel = { version = "0.3.1" } # delta_kernel = { path = "../delta-kernel-rs/kernel", version = "0.3.0" } # arrow -arrow = { version = "52" } -arrow-arith = { version = "52" } -arrow-array = { version = "52", features = ["chrono-tz"] } -arrow-buffer = { version = "52" } -arrow-cast = { version = "52" } -arrow-ipc = { version = "52" } -arrow-json = { version = "52" } -arrow-ord = { version = "52" } -arrow-row = { version = "52" } -arrow-schema = { version = "52" } -arrow-select = { version = "52" } -object_store = { version = "0.10.1" } -parquet = { version = "52" } +arrow = { version = "53" } +arrow-arith = { version = "53" } +arrow-array = { version = "53", features = ["chrono-tz"] } +arrow-buffer = { version = "53" } +arrow-cast = { version = "53" } +arrow-ipc = { version = "53" } +arrow-json = { version = "53" } +arrow-ord = { version = "53" } +arrow-row = { version = "53" } +arrow-schema = { version = "53" } +arrow-select = { version = "53" } +object_store = { version = "0.11" } +parquet = { version = "53" } # datafusion datafusion = { version = "41" } diff --git a/crates/core/src/kernel/scalars.rs b/crates/core/src/kernel/scalars.rs index bc1bd6eed9..735fe54be9 100644 --- a/crates/core/src/kernel/scalars.rs +++ b/crates/core/src/kernel/scalars.rs @@ -1,5 +1,5 @@ //! Auxiliary methods for dealing with kernel scalars -use std::cmp::Ordering; +use std::{cmp::Ordering, fmt::Debug}; use arrow_array::Array; use arrow_schema::TimeUnit; @@ -73,6 +73,7 @@ impl ScalarExt for Scalar { Self::Binary(val) => create_escaped_binary_string(val.as_slice()), Self::Null(_) => "null".to_string(), Self::Struct(_) => unimplemented!(), + Self::Array(_) => unimplemented!(), } } diff --git a/python/Cargo.toml b/python/Cargo.toml index 8ce542fd2e..ad84112875 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -43,7 +43,7 @@ reqwest = { version = "*", features = ["native-tls-vendored"] } deltalake-mount = { path = "../crates/mount" } [dependencies.pyo3] -version = "0.21.1" +version = "0.22.2" features = ["extension-module", "abi3", "abi3-py38"] [dependencies.deltalake]