From 8176bd80454a77816912c0fa0d7dc29e1b02fc7d 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",