Skip to content

Commit

Permalink
deps: bump polars to 0.43.1 at py-1.8.0 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Sep 23, 2024
1 parent cbd968b commit fc9e88a
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ xlsxwriter = { git = "https://github.com/jqnatividad/xlsxwriter-rs", branch = "b
# BUILD NOTE: Be sure to set QSV_POLARS_REV below to the latest commit short hash or tag
# of polars/py-polars before building qsv. This allows us to show the polars rev/tag in --version.
# if we are using a release version of Rust Polars, leave QSV_POLARS_REV empty
# QSV_POLARS_REV=506f927
# polars = { git = "https://github.com/pola-rs/polars", tag = "py-1.7.1" }
polars = { git = "https://github.com/pola-rs/polars", rev = "506f927" }
# QSV_POLARS_REV=py-1.8.0
polars = { git = "https://github.com/pola-rs/polars", tag = "py-1.8.0" }
# polars = { git = "https://github.com/pola-rs/polars", rev = "506f927" }

[features]
default = ["mimalloc"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
😣: uses additional memory proportional to the cardinality of the columns in the CSV.
🧠: expensive operations are memoized with available inter-session Redis/Disk caching for fetch commands.
πŸ—„οΈ: [Extended input support](#extended-input-support).
πŸ»β€β„οΈ: command powered by [![polars 0.43.0](https://img.shields.io/badge/polars-0.43.0-blue)](https://github.com/pola-rs/polars/releases/tag/rs-0.43.0).
πŸ»β€β„οΈ: command powered by [![polars 0.43.1 at the py-1.8.0 tag](https://img.shields.io/badge/polars-0.43.1-blue) at py-1.8.0 tag](https://github.com/pola-rs/polars/releases/tag/py-1.8.0).
πŸ€–: command uses Natural Language Processing & General AI techniques.
🏎️: multithreaded and/or faster when an index (πŸ“‡) is available.
πŸš€: multithreaded even without an index.
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/sqlp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Polars SQL is a SQL dialect, converting SQL queries to fast Polars LazyFrame exp
(see https://docs.pola.rs/user-guide/sql/intro/).
For a list of SQL functions and keywords supported by Polars SQL, see
https://github.com/pola-rs/polars/blob/rs-0.43.1/crates/polars-sql/src/functions.rs and
https://github.com/pola-rs/polars/blob/rs-0.43.1/crates/polars-sql/src/keywords.rs.
https://github.com/pola-rs/polars/blob/py-1.8.0/crates/polars-sql/src/functions.rs and
https://github.com/pola-rs/polars/blob/py-1.8.0/crates/polars-sql/src/keywords.rs.
https://docs.pola.rs/py-polars/html/reference/sql/index.html also provides a more readable
version of the SQL functions and keywords, though be aware that it's for the Python version
of Polars, so there will be some minor syntax differences.
Expand Down

0 comments on commit fc9e88a

Please sign in to comment.