mirror of
https://github.com/nushell/nushell.git
synced 2025-08-16 15:51:53 +02:00
Remove dataframes crate and feature (#12889)
# Description Removes the old `nu-cmd-dataframe` crate in favor of the polars plugin. As such, this PR also removes the `dataframe` feature, related CI, and full releases of nushell.
This commit is contained in:
@ -151,9 +151,8 @@ fn commands_declare_input_output_types() {
|
||||
let sig_name = cmd.signature().name;
|
||||
let category = cmd.signature().category;
|
||||
|
||||
if matches!(category, Category::Removed | Category::Custom(_)) {
|
||||
if matches!(category, Category::Removed) {
|
||||
// Deprecated/Removed commands don't have to conform
|
||||
// TODO: also upgrade the `--features dataframe` commands
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user