Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump to polars 0.45.1 at py-polars-1.20.0 tag #2448

Merged
merged 3 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 20 additions & 23 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -347,11 +347,11 @@ textwrap = { git = "https://github.com/mgeisler/textwrap", rev = "0e581b8" }
# (e.g. py-1.19.0:52ea381 to indicate that we are Python Polars 1.19.0,
# and the commit hash 52ea381)
# ================================
# QSV_POLARS_REV=py-1.19.0:74dad84
# polars = { git = "https://github.com/pola-rs/polars", tag = "py-1.19.0" }
polars = { git = "https://github.com/pola-rs/polars", rev = "74dad84" }
# polars-ops = { git = "https://github.com/pola-rs/polars", tag = "py-1.19.0" }
polars-ops = { git = "https://github.com/pola-rs/polars", rev = "74dad84" }
# QSV_POLARS_REV=py-1.20.0
polars = { git = "https://github.com/pola-rs/polars", tag = "py-1.20.0" }
# polars = { git = "https://github.com/pola-rs/polars", rev = "74dad84" }
polars-ops = { git = "https://github.com/pola-rs/polars", tag = "py-1.20.0" }
# polars-ops = { git = "https://github.com/pola-rs/polars", rev = "74dad84" }

[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 @@ -100,7 +100,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.45.1](https://img.shields.io/badge/polars-0.45.1-blue) at the py-1.19.0 release tag](https://github.com/pola-rs/polars/releases/tag/py-1.19.0).
🐻‍❄️: command powered by [![polars 0.45.1](https://img.shields.io/badge/polars-0.45.1-blue) at the py-1.20.0 release tag](https://github.com/pola-rs/polars/releases/tag/py-1.20.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
28 changes: 10 additions & 18 deletions tests/test_joinp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -951,15 +951,7 @@ fn joinp_asofby_1() {
"groups_numeric_right",
"bid_right"
],
svec![
"2016-01-01 12:23",
"MSFT",
"1",
"51.95",
"MSFT",
"1",
"51.95"
],
svec!["2016-01-01 12:23", "MSFT", "1", "51.95", "", "", ""],
svec![
"2016-01-01 12:38",
"MSFT",
Expand All @@ -974,27 +966,27 @@ fn joinp_asofby_1() {
"GOOG",
"2",
"720.77",
"GOOG",
"2",
"720.5"
"MSFT",
"1",
"51.99"
],
svec![
"2016-01-01 12:48",
"GOOG",
"2",
"720.92",
"GOOG",
"2",
"720.5"
"MSFT",
"1",
"51.99"
],
svec![
"2016-01-01 12:48",
"AAPL",
"3",
"98.0",
"GOOG",
"2",
"720.5"
"MSFT",
"1",
"51.99"
],
];
assert_eq!(got, expected);
Expand Down
Loading