Narrow Polars features to used operations - #54
Merged
Conversation
This was referenced Aug 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replace the broad/default Polars feature set with the operations grangers and its roers consumer actually use.
Retained features cover CSV writing, lazy frames, row extraction, struct and categorical columns, string concatenation, membership testing, and absolute value. Removed features are dataframe_arithmetic, checked_arithmetic, list_eval, regex, timezones, the blanket polars-ops request, and Polars defaults.
The temporal feature looks surprising but is intentional for Polars 0.53: enabling strings compiles an unconditional polars_time import in polars-expr without activating that optional dependency. temporal is the smallest working public Polars feature that supplies it; grangers itself does not use temporal columns. This is documented beside the dependency so it can be removed when the Polars wiring is fixed or upgraded.
Companion dependency cleanups: scverse/anndata-rs#43 and COMBINE-lab/af-anndata#3. Simpleaf's CI/LTO cleanup is COMBINE-lab/simpleaf#206.
Validation