From 24b19472ae3fb770aa43738eaf98d8f6c90bf149 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Fri, 7 Feb 2025 08:00:31 -0800 Subject: [PATCH] remove unnecessary pyarrow feature --- Cargo.lock | 1 - Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e80261d..f1b1ed50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -960,7 +960,6 @@ dependencies = [ "object_store", "parquet", "paste", - "pyo3", "recursive", "sqlparser", "tokio", diff --git a/Cargo.toml b/Cargo.toml index c387cc20..d18e0e8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ tokio = { version = "1.42", features = ["macros", "rt", "rt-multi-thread", "sync pyo3 = { version = "0.23", features = ["extension-module", "abi3", "abi3-py38"] } pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime"]} arrow = { version = "54", features = ["pyarrow"] } -datafusion = { version = "45.0.0", features = ["avro", "pyarrow", "unicode_expressions"] } +datafusion = { version = "45.0.0", features = ["avro", "unicode_expressions"] } datafusion-substrait = { version = "45.0.0", optional = true } datafusion-proto = { version = "45.0.0" } datafusion-ffi = { version = "45.0.0" }