From c86aa0cd24a0a506e5eb02100013171ecc6c4a28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 17:58:09 +0000 Subject: [PATCH] chore: bump arrow from 49.0.0 to 51.0.0 Bumps [arrow](https://github.com/apache/arrow-rs) from 49.0.0 to 51.0.0. - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG-old.md) - [Commits](https://github.com/apache/arrow-rs/commits) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 +++------- lutra/bindings/python/Cargo.toml | 2 +- lutra/lutra/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index afdee9efb07d..4cae36e7ba68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,6 @@ dependencies = [ "arrow-schema 49.0.0", "arrow-select 49.0.0", "arrow-string 49.0.0", - "pyo3", ] [[package]] @@ -198,6 +197,7 @@ dependencies = [ "arrow-schema 51.0.0", "arrow-select 51.0.0", "arrow-string 51.0.0", + "pyo3", ] [[package]] @@ -297,7 +297,6 @@ dependencies = [ "arrow-select 49.0.0", "base64 0.21.7", "chrono", - "comfy-table", "half", "lexical-core", "num", @@ -413,9 +412,6 @@ name = "arrow-schema" version = "49.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09e28a5e781bf1b0f981333684ad13f5901f4cd2f20589eab7cf1797da8fc167" -dependencies = [ - "bitflags 2.4.2", -] [[package]] name = "arrow-schema" @@ -2266,7 +2262,7 @@ name = "lutra" version = "0.11.5" dependencies = [ "anyhow", - "arrow 49.0.0", + "arrow 51.0.0", "clap 4.4.18", "connector_arrow", "env_logger", @@ -2282,7 +2278,7 @@ dependencies = [ name = "lutra-python" version = "0.11.5" dependencies = [ - "arrow 49.0.0", + "arrow 51.0.0", "itertools 0.12.1", "lutra", "pyo3", diff --git a/lutra/bindings/python/Cargo.toml b/lutra/bindings/python/Cargo.toml index c880e4b7b0ef..517ed16a71d8 100644 --- a/lutra/bindings/python/Cargo.toml +++ b/lutra/bindings/python/Cargo.toml @@ -15,7 +15,7 @@ doc = false test = false [target.'cfg(not(target_family="wasm"))'.dependencies] -arrow = {version = "49.0", features = ["pyarrow"], default-features = false} +arrow = {version = "51.0", features = ["pyarrow"], default-features = false} itertools = {workspace = true} # we rename lutra to lutralib here, so we can define a function named lutra lutralib = {package = "lutra", path = "../../lutra", default-features = false} diff --git a/lutra/lutra/Cargo.toml b/lutra/lutra/Cargo.toml index 762135f0cd56..de511268b957 100644 --- a/lutra/lutra/Cargo.toml +++ b/lutra/lutra/Cargo.toml @@ -24,7 +24,7 @@ test = false [target.'cfg(not(target_family="wasm"))'.dependencies] anyhow = {workspace = true} -arrow = {version = "49.0", features = ["prettyprint"], default-features = false} +arrow = {version = "51.0", features = ["prettyprint"], default-features = false} clap = {version = "4.4.18", features = ["derive"], optional = true} connector_arrow = {version = "0.4.1", features = ["src_sqlite"]} env_logger = "0.10.2"