Skip to content

Commit

Permalink
bump bump bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Sep 14, 2024
1 parent a620d3b commit 9d686df
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
3 changes: 2 additions & 1 deletion crates/core/src/kernel/scalars.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -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!(),
}
}

Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 9d686df

Please sign in to comment.