pola-rs/polars-cli

Installing from `crates.io` requires nightly compiler

Closed this issue · 2 comments

Checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of the Polars CLI.

Reproducible example

cargo install --locked polars-cli

Issue description

polars-cli is using unstable rust features. The build is failing as we can see in print below:

image

Expected behavior

to compile.

Installed version

0.5.0

There was an issue with the 0.34.0 Polars release.

Try either of the following:

cargo install polars-cli
cargo +nightly install --locked polars-cli

Next time I'll wait a bit with releasing the CLI until any issues with the Rust release have been ironed out. For now, I'll release 0.5.1 to fix this issue.

There was an issue with the 0.34.0 Polars release.

Try either of the following:

cargo install polars-cli
cargo +nightly install --locked polars-cli

Next time I'll wait a bit with releasing the CLI until any issues with the Rust release have been ironed out. For now, I'll release 0.5.1 to fix this issue.

Removing --locked did it. Thank you.