Skip to content

Commit

Permalink
update arrow (#2822)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Mar 3, 2022
1 parent 41e4adc commit ea5ccc1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion polars/polars-arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Arrow interfaces for Polars DataFrame library"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "5d0db548142e5a7944728fe81d00ed048f7114d9", default-features = false }
arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "a87c758a80facbfbcde4768ad42cdf4c5c2cc5a8", default-features = false }
# arrow = { package = "arrow2", git = "https://github.com/ritchie46/arrow2", branch = "csv_write", default-features = false }
# arrow = { package = "arrow2", version = "0.9", default-features = false, features = ["compute_concatenate"] }
hashbrown = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ thiserror = "^1.0"
package = "arrow2"
git = "https://github.com/jorgecarleitao/arrow2"
# git = "https://github.com/ritchie46/arrow2"
rev = "5d0db548142e5a7944728fe81d00ed048f7114d9"
rev = "a87c758a80facbfbcde4768ad42cdf4c5c2cc5a8"
# branch = "csv_write"
# version = "0.9"
default-features = false
Expand Down
2 changes: 0 additions & 2 deletions polars/polars-core/src/series/ops/ewm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ impl Series {
let x_slice = arr.values().as_slice();

ewm_std(x_slice, ewma_slice, options.alpha);
ewma_arr.with_validity(arr.validity().cloned());
// we mask the original null values until we know better how to deal with them.
let out = Arc::new(ewma_arr.with_validity(arr.validity().cloned())) as ArrayRef;
Series::try_from((self.name(), out))
Expand Down Expand Up @@ -165,7 +164,6 @@ impl Series {
let x_slice = arr.values().as_slice();

ewm_var(x_slice, ewma_slice, options.alpha);
ewma_arr.with_validity(arr.validity().cloned());
// we mask the original null values until we know better how to deal with them.
let out = Arc::new(ewma_arr.with_validity(arr.validity().cloned())) as ArrayRef;
Series::try_from((self.name(), out))
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private = []
[dependencies]
ahash = "0.7"
anyhow = "1.0"
arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "5d0db548142e5a7944728fe81d00ed048f7114d9", default-features = false }
arrow = { package = "arrow2", git = "https://github.com/jorgecarleitao/arrow2", rev = "a87c758a80facbfbcde4768ad42cdf4c5c2cc5a8", default-features = false }
# arrow = { package = "arrow2", git = "https://github.com/ritchie46/arrow2", branch = "csv_write", default-features = false }
# arrow = { package = "arrow2", version = "0.9", default-features = false }
csv-core = { version = "0.1.10", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion py-polars/Cargo.lock

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

0 comments on commit ea5ccc1

Please sign in to comment.