You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/01/24 22:44:07 UTC

[arrow-datafusion] branch master updated: Remove unnecessary pyo3 dependency from datafusion crate (#5048)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new f627ed98e Remove unnecessary pyo3 dependency from datafusion crate (#5048)
f627ed98e is described below

commit f627ed98e2633e100a14a1d687bfb72b9ed97054
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Tue Jan 24 22:44:02 2023 +0000

    Remove unnecessary pyo3 dependency from datafusion crate (#5048)
---
 datafusion/core/Cargo.toml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml
index 00ca39f47..afd3068ff 100644
--- a/datafusion/core/Cargo.toml
+++ b/datafusion/core/Cargo.toml
@@ -50,7 +50,7 @@ dictionary_expressions = ["datafusion-physical-expr/dictionary_expressions"]
 force_hash_collisions = []
 # Used to enable JIT code generation
 jit = ["datafusion-jit", "datafusion-row/jit"]
-pyarrow = ["pyo3", "arrow/pyarrow", "datafusion-common/pyarrow"]
+pyarrow = ["datafusion-common/pyarrow"]
 regex_expressions = ["datafusion-physical-expr/regex_expressions"]
 # Used to enable scheduler
 scheduler = ["rayon"]
@@ -90,7 +90,6 @@ parquet = { version = "31.0.0", features = ["arrow", "async"] }
 paste = "^1.0"
 percent-encoding = "2.2.0"
 pin-project-lite = "^0.2.7"
-pyo3 = { version = "0.17.1", optional = true }
 rand = "0.8"
 rayon = { version = "1.5", optional = true }
 smallvec = { version = "1.6", features = ["union"] }