Skip to content

Commit

Permalink
Update itertools requirement from 0.12 to 0.13 (#10556)
Browse files Browse the repository at this point in the history
* Update itertools requirement from 0.12 to 0.13

Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version.
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.0...v0.13.0)

---
updated-dependencies:
- dependency-name: itertools
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update Cargo.lock

* Avoid deprecated API

* nested-functions: workspace version of itertools

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Lamb <[email protected]>
Co-authored-by: Eduard Karacharov <[email protected]>
  • Loading branch information
3 people committed Aug 21, 2024
1 parent c6be00d commit b2ac83f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ futures = "0.3"
half = { version = "2.2.1", default-features = false }
hashbrown = { version = "0.14.5", features = ["raw"] }
indexmap = "2.0.0"
itertools = "0.12"
itertools = "0.13"
log = "^0.4"
num_cpus = "1.13.0"
object_store = { version = "0.10.2", default-features = false }
Expand Down
25 changes: 8 additions & 17 deletions datafusion-cli/Cargo.lock

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

Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ impl FileGroupPartitioner {
},
)
.flatten()
.group_by(|(partition_idx, _)| *partition_idx)
.chunk_by(|(partition_idx, _)| *partition_idx)
.into_iter()
.map(|(_, group)| group.map(|(_, vals)| vals).collect_vec())
.collect_vec();
Expand Down
2 changes: 1 addition & 1 deletion datafusion/functions-nested/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ datafusion-execution = { workspace = true }
datafusion-expr = { workspace = true }
datafusion-functions = { workspace = true }
datafusion-functions-aggregate = { workspace = true }
itertools = { version = "0.12", features = ["use_std"] }
itertools = { workspace = true, features = ["use_std"] }
log = { workspace = true }
paste = "1.0.14"
rand = "0.8.5"
Expand Down

0 comments on commit b2ac83f

Please sign in to comment.