You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiled a blank project with pyo3-polars 0.17 with feature dtype-categorical, a compilation error is generated:
error[E0432]: unresolved import polars_core::datatypes::create_enum_data_type
pyo3-polars-0.17.0/src/types.rs:6:5
6 | use polars_core::datatypes::create_enum_data_type;
| ^^^^^^^^^^^^^^^^^^^^^^^^---------------------
| | |
| | help: a similar name exists in the module: create_enum_dtype
| no create_enum_data_type in datatypes
error[E0425]: cannot find function to_series in this scope
pyo3-polars-0.17.0/src/types.rs:465:30
|
26 | pub(crate) fn get_series(obj: &Bound<'_, PyAny>) -> PyResult {
| -------------------------------------------------------------------- similarly named function get_series defined here
...
465 | let series = to_series(py, PySeries(s));
| ^^^^^^^^^ help: a function with a similar name exists: get_series
I've checked and in polars create_enum_data_type exists and it is enabled with dtype-categorical feature.
Same for get_series in pyo3-polars with same feature.
The text was updated successfully, but these errors were encountered:
When compiled a blank project with pyo3-polars 0.17 with feature dtype-categorical, a compilation error is generated:
error[E0432]: unresolved import polars_core::datatypes::create_enum_data_type
pyo3-polars-0.17.0/src/types.rs:6:5
6 | use polars_core::datatypes::create_enum_data_type;
| ^^^^^^^^^^^^^^^^^^^^^^^^---------------------
| | |
| | help: a similar name exists in the module: create_enum_dtype
| no create_enum_data_type in datatypes
error[E0425]: cannot find function to_series in this scope
pyo3-polars-0.17.0/src/types.rs:465:30
|
26 | pub(crate) fn get_series(obj: &Bound<'_, PyAny>) -> PyResult {
| -------------------------------------------------------------------- similarly named function get_series defined here
...
465 | let series = to_series(py, PySeries(s));
| ^^^^^^^^^ help: a function with a similar name exists: get_series
I've checked and in polars create_enum_data_type exists and it is enabled with dtype-categorical feature.
Same for get_series in pyo3-polars with same feature.
The text was updated successfully, but these errors were encountered: