From 99a21ce3fc4a047c20624bcc8b421dd0480c97d0 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Mon, 29 Jan 2024 20:09:44 +0100 Subject: [PATCH] Dependencies: Add `pyarrow` package, `pandas` says it needs it Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0), (to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries) but was not found to be installed on your system. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 488383e..aff3442 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,6 +82,7 @@ dataframe = [ "dask", "numpy", "pandas", + "pyarrow", ] develop = [ "black[jupyter]<24",