From 879aa2ebe38656b5e4b6eabd9d1eaba1e16c2c5b Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 5 Apr 2025 16:31:13 +0100 Subject: [PATCH] Update pyo3-polars dependency to version 0.18.0 and adjust polars features --- Cargo.toml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 799be2f..0761ce4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,16 +32,23 @@ ndarray = { version = "*" } pyo3 = { version = "*", features = ["extension-module", "abi3-py37"] } -pyo3-polars = { git = "https://github.com/Magnus167/pyo3-polars.git" } +# pyo3-polars = { git = "https://github.com/Magnus167/pyo3-polars.git", features = [ +# "dtype-categorical", +# ] } +pyo3-polars = { version = "0.18.0" , features = [ + "dtype-categorical", + "dtype-struct", +] } -polars = { version = "^0.46.0", features = [ +polars = { version = "0.44.2", features = [ "lazy", "temporal", "describe", "json", "parquet", "dtype-datetime", - # "dtype-categorical", + "dtype-categorical", + "dtype-struct", "strings", "timezones", "ndarray",