Skip to content

Commit

Permalink
feat: bump polars to 0.38.2 (#907)
Browse files Browse the repository at this point in the history
Co-authored-by: Etienne Bacher <[email protected]>
  • Loading branch information
eitsupi and etiennebacher authored Mar 11, 2024
1 parent ee6b7f9 commit 2b3a001
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 38 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### New features

- rust-polars is updated to 0.38.2 (#907).
- Minimum supported Rust version (MSRV) is now 1.76.0.
- `as_polars_df(<nanoarrow_array>)` is added (#893).
- It is now possible to create an empty `DataFrame` with a specific schema
with `pl$DataFrame(schema = my_schema)` (#901).
Expand Down
68 changes: 34 additions & 34 deletions src/rust/Cargo.lock

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

8 changes: 4 additions & 4 deletions src/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "r-polars"
version = "0.38.1"
edition = "2021"
rust-version = "1.74.1"
rust-version = "1.76.0"
publish = false

[lib]
Expand Down Expand Up @@ -52,8 +52,8 @@ serde_json = "*"
smartstring = "1.0.1"
state = "0.6.0"
thiserror = "1.0.57"
polars-core = { git = "https://github.com/pola-rs/polars.git", rev = "a199ed57898343dc033e52132e8dfbc6f5ab09e0", default-features = false }
polars-lazy = { git = "https://github.com/pola-rs/polars.git", rev = "a199ed57898343dc033e52132e8dfbc6f5ab09e0", default-features = false }
polars-core = { git = "https://github.com/pola-rs/polars.git", rev = "946fad7a7b56a360e7ec04867aa19f212fcdf5d6", default-features = false }
polars-lazy = { git = "https://github.com/pola-rs/polars.git", rev = "946fad7a7b56a360e7ec04867aa19f212fcdf5d6", default-features = false }
either = "1"
#features copied from node-polars

Expand Down Expand Up @@ -153,4 +153,4 @@ features = [
"zip_with",
]
git = "https://github.com/pola-rs/polars.git"
rev = "a199ed57898343dc033e52132e8dfbc6f5ab09e0"
rev = "946fad7a7b56a360e7ec04867aa19f212fcdf5d6"
1 change: 1 addition & 0 deletions src/rust/src/lazy/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,7 @@ impl RPolarsLazyFrame {
comm_subexpr_elim,
streaming,
fast_projection: _,
row_estimate: _,
eager,
} = self.0.get_current_optimizations();
list!(
Expand Down

0 comments on commit 2b3a001

Please sign in to comment.