Skip to content

Commit

Permalink
update pyo3 to 0.23 (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep authored Nov 29, 2024
1 parent a9a93c5 commit 4ec5dc2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ name = "zarrs_python"
crate-type = ["cdylib", "rlib"]

[dependencies]
pyo3 = { version = "0.22.6", features = ["abi3-py311"] }
pyo3 = { version = "0.23.2", features = ["abi3-py311"] }
zarrs = "0.18.0"
rayon_iter_concurrent_limit = "0.2.0"
rayon = "1.10.0"
# fix for https://stackoverflow.com/questions/76593417/package-openssl-was-not-found-in-the-pkg-config-search-path
openssl = { version = "0.10", features = ["vendored"] }
numpy = "0.22.1"
numpy = "0.23.0"
unsafe_cell_slice = "0.2.0"
serde_json = "1.0.128"
pyo3-stub-gen = { version = "0.6.1", git = "https://github.com/flying-sheep/pyo3-stub-gen.git", branch = "py-untyped-array" }
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ impl CodecPipelineImpl {
})?;
Ok(chunk_bytes
.into_iter()
.map(|x| x.into_pyarray_bound(py))
.map(|x| x.into_pyarray(py))
.collect())
}

Expand Down

0 comments on commit 4ec5dc2

Please sign in to comment.