From 6ba3b9d0b8fa313e8bce076bbf919c4ca090c871 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 May 2022 08:30:51 +0000 Subject: [PATCH] Update parquet requirement from 14.0.0 to 15.0.0 Updates the requirements on [parquet](https://github.com/apache/arrow-rs) to permit the latest version. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/compare/14.0.0...15.0.0) --- updated-dependencies: - dependency-name: parquet dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- datafusion/common/Cargo.toml | 2 +- datafusion/core/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml index a8f1032fd00c0..d36927c1373e8 100644 --- a/datafusion/common/Cargo.toml +++ b/datafusion/common/Cargo.toml @@ -42,6 +42,6 @@ arrow = { version = "14.0.0", features = ["prettyprint"] } avro-rs = { version = "0.13", features = ["snappy"], optional = true } cranelift-module = { version = "0.84.0", optional = true } ordered-float = "3.0" -parquet = { version = "14.0.0", features = ["arrow"], optional = true } +parquet = { version = "15.0.0", features = ["arrow"], optional = true } pyo3 = { version = "0.16", optional = true } sqlparser = "0.17" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index 08da53f9c5588..17eedd60cfbbc 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -76,7 +76,7 @@ num-traits = { version = "0.2", optional = true } num_cpus = "1.13.0" ordered-float = "3.0" parking_lot = "0.12" -parquet = { version = "14.0.0", features = ["arrow"] } +parquet = { version = "15.0.0", features = ["arrow"] } paste = "^1.0" pin-project-lite = "^0.2.7" pyo3 = { version = "0.16", optional = true }