Skip to content

Commit

Permalink
Update pyo3 and itertools dependencies.
Browse files Browse the repository at this point in the history
Update pyo3 and itertools dependencies.
  • Loading branch information
ghuls committed Jul 8, 2024
1 parent 65381a7 commit 98a55b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ crate-type = ["cdylib"]

[dependencies]
bgzip = { git = "https://github.com/informationsea/bgzip-rs/", rev = "4492b5d6abb3e191c2eb007f148b704b654d528e", default-features = false, features = ["rust_backend", "rayon", "log"] }
itertools = "0.12.1"
pyo3 = { version = "0.20.2", features = ["abi3-py38", "extension-module"] }
itertools = "0.13.0"
pyo3 = { version = "0.22.1", features = ["abi3-py38", "extension-module"] }

[target.'cfg(not(all(target_os = "linux", target_arch = "powerpc64")))'.dependencies]
rust-htslib = { version = "0.47.0", default-features = false, features = ["libdeflate"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ fn merge_fragment_files(
}

#[pymodule]
fn _rust_scatac_fragment_tools(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
fn _rust_scatac_fragment_tools(m: &Bound<'_, PyModule>) -> PyResult<()> {
// set version dunder
m.add("__version__", env!("CARGO_PKG_VERSION"))?;
// add functions
Expand Down

0 comments on commit 98a55b0

Please sign in to comment.