From e77532fb158f361ddeddac4fc0eeb348758057ab Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Tue, 29 Aug 2023 16:16:13 +0200 Subject: [PATCH] Add pyarrow dependency --- apis/python/node/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apis/python/node/pyproject.toml b/apis/python/node/pyproject.toml index f23f5f3d..a7c3a22a 100644 --- a/apis/python/node/pyproject.toml +++ b/apis/python/node/pyproject.toml @@ -4,6 +4,8 @@ build-backend = "maturin" [project] name = "dora-rs" +# Install pyarrow at the same time of dora-rs +dependencies = ['pyarrow'] [tool.maturin] features = ["pyo3/extension-module"]