From 59cc0058f8e7006ac97fa63372ed2de69484cf35 Mon Sep 17 00:00:00 2001 From: wudidapaopao Date: Wed, 12 Nov 2025 16:01:01 +0800 Subject: [PATCH] build: add pandas and pyarrow dependencies --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 37527418e87..73ad7a6d7bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,9 +29,12 @@ classifiers = [ "Topic :: Database", "Topic :: Scientific/Engineering", ] +dependencies = [ + "pandas>=2.0.0", + "pyarrow>=13.0.0" +] [project.optional-dependencies] -dataframe = ["pandas>=2.0.0", "pyarrow>=13.0.0"] dev = ["pytest", "pytest-cov"] ci = ["cibuildwheel"] publish = ["twine", "wheel"]