Skip to content

Commit

Permalink
docs: add important note about using GitHub version of plotlars due t…
Browse files Browse the repository at this point in the history
…o polars issue
  • Loading branch information
alceal committed Oct 12, 2024
1 parent ca0a5c5 commit 0e8c027
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plotlars"
version = "0.5.0"
version = "0.5.2"
authors = ["Alberto Cebada Aleu <[email protected]>"]
edition = "2021"
rust-version = "1.80.1"
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@
</a>
</p>

> ## <span style="color: red; font-weight: bold;">⚠️ Important Note</span>
>
> **Due to an issue in the `polars` crate, you must install the `plotlars` crate
> from its GitHub repository to ensure proper functionality.**
>
> To include the GitHub version of `plotlars` with the fix in your project, add the following line to your `Cargo.toml` file, specifying the `fix/polars-issue` branch:
>
> ```toml
> [dependencies]
> plotlars = { git = "https://github.com/user/plotlars", branch = "fix/polars-issue" }
> ```
>
> If you’re using a Rust notebook, you can include the dependency using:
>```
> :dep plotlars = { git = "https://github.com/alceal/plotlars", branch = "fix/polars-issue" }
> ```
Plotlars is a versatile Rust library that acts as a wrapper around the Plotly
crate, bridging the gap between the powerful Polars data analysis library and
Plotly. It simplifies the process of creating visualizations from data frames,
Expand Down

0 comments on commit 0e8c027

Please sign in to comment.