Skip to content
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
2 changes: 1 addition & 1 deletion arrow-pyarrow-integration-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ crate-type = ["cdylib"]

[dependencies]
arrow = { path = "../arrow", features = ["pyarrow"] }
pyo3 = { version = "0.24", features = ["extension-module"] }
pyo3 = { version = "0.24.1", features = ["extension-module"] }
2 changes: 1 addition & 1 deletion arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ arrow-select = { workspace = true }
arrow-string = { workspace = true }

rand = { version = "0.9", default-features = false, features = ["std", "std_rng", "thread_rng"], optional = true }
pyo3 = { version = "0.24", default-features = false, optional = true }
pyo3 = { version = "0.24.1", default-features = false, optional = true }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think technically speaking this change is not necessary for downstream crates to update to py03 0.24.1 as 0.24.0 is compatible with doing so

However, given that arrow tests with just the latest release of the dependencies, I think it is wise to increase it in our cargo toml file as well

half = { version = "2.1", default-features = false, optional = true }

[package.metadata.docs.rs]
Expand Down
Loading