Skip to content

Commit

Permalink
Rust Polars 0.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Oct 27, 2024
1 parent d51b12c commit deb07dd
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 50 deletions.
51 changes: 26 additions & 25 deletions Cargo.lock

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

46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ default-members = [
]

[workspace.package]
version = "0.43.1"
version = "0.44.0"
authors = ["Ritchie Vink <[email protected]>"]
edition = "2021"
homepage = "https://www.pola.rs/"
Expand Down Expand Up @@ -91,35 +91,35 @@ version_check = "0.9.4"
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
zstd = "0.13"

polars = { version = "0.43.1", path = "crates/polars", default-features = false }
polars-compute = { version = "0.43.1", path = "crates/polars-compute", default-features = false }
polars-core = { version = "0.43.1", path = "crates/polars-core", default-features = false }
polars-error = { version = "0.43.1", path = "crates/polars-error", default-features = false }
polars-expr = { version = "0.43.1", path = "crates/polars-expr", default-features = false }
polars-ffi = { version = "0.43.1", path = "crates/polars-ffi", default-features = false }
polars-io = { version = "0.43.1", path = "crates/polars-io", default-features = false }
polars-json = { version = "0.43.1", path = "crates/polars-json", default-features = false }
polars-lazy = { version = "0.43.1", path = "crates/polars-lazy", default-features = false }
polars-mem-engine = { version = "0.43.1", path = "crates/polars-mem-engine", default-features = false }
polars-ops = { version = "0.43.1", path = "crates/polars-ops", default-features = false }
polars-parquet = { version = "0.43.1", path = "crates/polars-parquet", default-features = false }
polars-pipe = { version = "0.43.1", path = "crates/polars-pipe", default-features = false }
polars-plan = { version = "0.43.1", path = "crates/polars-plan", default-features = false }
polars-python = { version = "0.43.1", path = "crates/polars-python", default-features = false }
polars-row = { version = "0.43.1", path = "crates/polars-row", default-features = false }
polars-schema = { version = "0.43.1", path = "crates/polars-schema", default-features = false }
polars-sql = { version = "0.43.1", path = "crates/polars-sql", default-features = false }
polars-stream = { version = "0.43.1", path = "crates/polars-stream", default-features = false }
polars-time = { version = "0.43.1", path = "crates/polars-time", default-features = false }
polars-utils = { version = "0.43.1", path = "crates/polars-utils", default-features = false }
polars = { version = "0.44.0", path = "crates/polars", default-features = false }
polars-compute = { version = "0.44.0", path = "crates/polars-compute", default-features = false }
polars-core = { version = "0.44.0", path = "crates/polars-core", default-features = false }
polars-error = { version = "0.44.0", path = "crates/polars-error", default-features = false }
polars-expr = { version = "0.44.0", path = "crates/polars-expr", default-features = false }
polars-ffi = { version = "0.44.0", path = "crates/polars-ffi", default-features = false }
polars-io = { version = "0.44.0", path = "crates/polars-io", default-features = false }
polars-json = { version = "0.44.0", path = "crates/polars-json", default-features = false }
polars-lazy = { version = "0.44.0", path = "crates/polars-lazy", default-features = false }
polars-mem-engine = { version = "0.44.0", path = "crates/polars-mem-engine", default-features = false }
polars-ops = { version = "0.44.0", path = "crates/polars-ops", default-features = false }
polars-parquet = { version = "0.44.0", path = "crates/polars-parquet", default-features = false }
polars-pipe = { version = "0.44.0", path = "crates/polars-pipe", default-features = false }
polars-plan = { version = "0.44.0", path = "crates/polars-plan", default-features = false }
polars-python = { version = "0.44.0", path = "crates/polars-python", default-features = false }
polars-row = { version = "0.44.0", path = "crates/polars-row", default-features = false }
polars-schema = { version = "0.44.0", path = "crates/polars-schema", default-features = false }
polars-sql = { version = "0.44.0", path = "crates/polars-sql", default-features = false }
polars-stream = { version = "0.44.0", path = "crates/polars-stream", default-features = false }
polars-time = { version = "0.44.0", path = "crates/polars-time", default-features = false }
polars-utils = { version = "0.44.0", path = "crates/polars-utils", default-features = false }

[workspace.dependencies.arrow-format]
package = "polars-arrow-format"
version = "0.1.0"

[workspace.dependencies.arrow]
package = "polars-arrow"
version = "0.43.1"
version = "0.44.0"
path = "crates/polars-arrow"
default-features = false
features = [
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-lazy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ temporal = [
]
# debugging purposes
fmt = ["polars-core/fmt", "polars-plan/fmt"]
strings = ["polars-plan/strings"]
strings = ["polars-plan/strings", "polars-stream/strings"]
future = []

dtype-full = [
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ hashbrown = { workspace = true }
num-traits = { workspace = true }
polars-compute = { workspace = true, features = ["approx_unique"] }
polars-error = { workspace = true }
polars-parquet-format = { git = "https://github.com/pola-rs/parquet-format" }
polars-parquet-format = "0.1"
polars-utils = { workspace = true, features = ["mmap"] }
simdutf8 = { workspace = true }

Expand Down
1 change: 1 addition & 0 deletions crates/polars-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ nightly = []
bitwise = ["polars-core/bitwise", "polars-plan/bitwise"]
merge_sorted = ["polars-plan/merge_sorted"]
dynamic_group_by = []
strings = []
1 change: 1 addition & 0 deletions crates/polars-stream/src/physical_plan/lower_expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ pub(crate) fn is_elementwise(
match function {
// Non-strict strptime must be done in-memory to ensure the format
// is consistent across the entire dataframe.
#[cfg(feature = "strings")]
FunctionExpr::StringExpr(StringFunction::Strptime(_, opts)) => opts.strict,
_ => {
options.is_elementwise()
Expand Down

0 comments on commit deb07dd

Please sign in to comment.