Skip to content

Commit

Permalink
feature gate
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Sep 24, 2023
1 parent 5109085 commit 6a149e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/polars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ list_any_all = ["polars-lazy?/list_any_all"]
cutqcut = ["polars-lazy?/cutqcut"]
rle = ["polars-lazy?/rle"]
extract_groups = ["polars-lazy?/extract_groups"]
# Will be removed if groupby-code is out of polars-core
algorithm_groupby = ["polars-core/algorithm_group_by"]

test = [
"lazy",
Expand Down
1 change: 1 addition & 0 deletions crates/polars/src/prelude.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#[cfg(feature = "polars-algo")]
pub use polars_algo::prelude::*;
#[cfg(feature = "algorithm_groupby")]
pub use polars_core::frame::group_by::*;
pub use polars_core::prelude::*;
pub use polars_core::utils::NoNull;
Expand Down

0 comments on commit 6a149e2

Please sign in to comment.