mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 06:30:08 +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:
@ -6,7 +6,7 @@ DIR=$(readlink -f $(dirname "${BASH_SOURCE[0]}"))
|
||||
REPO_ROOT=$(dirname $DIR)
|
||||
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "Building nushell (nu) with dataframes and all the plugins"
|
||||
echo "Building nushell (nu) and all the plugins"
|
||||
echo "---------------------------------------------------------------"
|
||||
echo ""
|
||||
|
||||
@ -21,7 +21,7 @@ NU_PLUGINS=(
|
||||
echo "Building nushell"
|
||||
(
|
||||
cd $REPO_ROOT
|
||||
cargo build --features=dataframe --locked
|
||||
cargo build --locked
|
||||
)
|
||||
|
||||
for plugin in "${NU_PLUGINS[@]}"
|
||||
|
@ -1,11 +1,11 @@
|
||||
@echo off
|
||||
echo -------------------------------------------------------------------
|
||||
echo Building nushell (nu.exe) with dataframes and all the plugins
|
||||
echo Building nushell (nu.exe) and all the plugins
|
||||
echo -------------------------------------------------------------------
|
||||
echo.
|
||||
|
||||
echo Building nushell.exe
|
||||
cargo build --features=dataframe --locked
|
||||
cargo build --locked
|
||||
echo.
|
||||
|
||||
call :build crates\nu_plugin_example nu_plugin_example.exe
|
||||
|
@ -1,7 +1,7 @@
|
||||
use std log warning
|
||||
|
||||
print '-------------------------------------------------------------------'
|
||||
print 'Building nushell (nu) with dataframes and all the plugins'
|
||||
print 'Building nushell (nu) and all the plugins'
|
||||
print '-------------------------------------------------------------------'
|
||||
|
||||
warning "./scripts/build-all.nu will be deprecated, please use the `toolkit build` command instead"
|
||||
@ -13,7 +13,7 @@ def build-nushell [] {
|
||||
print '----------------------------'
|
||||
|
||||
cd $repo_root
|
||||
cargo build --features=dataframe --locked
|
||||
cargo build --locked
|
||||
}
|
||||
|
||||
def build-plugin [] {
|
||||
|
@ -2,13 +2,13 @@
|
||||
# Usage: Just run `powershell install-all.ps1` in nushell root directory
|
||||
|
||||
Write-Output "-----------------------------------------------------------------"
|
||||
Write-Output "Installing nushell (nu) with dataframes and all the plugins"
|
||||
Write-Output "Installing nushell (nu) and all the plugins"
|
||||
Write-Output "-----------------------------------------------------------------"
|
||||
Write-Output ""
|
||||
|
||||
Write-Output "Install nushell from local..."
|
||||
Write-Output "----------------------------------------------"
|
||||
cargo install --force --path . --features=dataframe --locked
|
||||
cargo install --force --path . --locked
|
||||
|
||||
$NU_PLUGINS = @(
|
||||
'nu_plugin_example',
|
||||
|
@ -6,13 +6,13 @@ DIR=$(readlink -f $(dirname "${BASH_SOURCE[0]}"))
|
||||
REPO_ROOT=$(dirname $DIR)
|
||||
|
||||
echo "-----------------------------------------------------------------"
|
||||
echo "Installing nushell (nu) with dataframes and all the plugins"
|
||||
echo "Installing nushell (nu) and all the plugins"
|
||||
echo "-----------------------------------------------------------------"
|
||||
echo ""
|
||||
|
||||
echo "Install nushell from local..."
|
||||
echo "----------------------------------------------"
|
||||
cargo install --force --path "$REPO_ROOT" --features=dataframe --locked
|
||||
cargo install --force --path "$REPO_ROOT" --locked
|
||||
|
||||
NU_PLUGINS=(
|
||||
'nu_plugin_inc'
|
||||
|
Reference in New Issue
Block a user