Update pyo3-polars dependency to version 0.18.0 and adjust polars features

This commit is contained in:
Palash Tyagi 2025-04-05 16:31:13 +01:00
parent 19ff090508
commit 879aa2ebe3

View File

@ -32,16 +32,23 @@ ndarray = { version = "*" }
pyo3 = { version = "*", features = ["extension-module", "abi3-py37"] } 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", "lazy",
"temporal", "temporal",
"describe", "describe",
"json", "json",
"parquet", "parquet",
"dtype-datetime", "dtype-datetime",
# "dtype-categorical", "dtype-categorical",
"dtype-struct",
"strings", "strings",
"timezones", "timezones",
"ndarray", "ndarray",