Skip to content

Commit

Permalink
Bump pyo3 from 0.19.2 to 0.22.2 (#6)
Browse files Browse the repository at this point in the history
* Bump pyo3 from 0.19.2 to 0.22.2

Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.19.2 to 0.22.2.
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.19.2...v0.22.2)

---
updated-dependencies:
- dependency-name: pyo3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* fix

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: C. Titus Brown <[email protected]>
  • Loading branch information
dependabot[bot] and ctb authored Sep 2, 2024
1 parent 6f80cbe commit 6e4704b
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 74 deletions.
105 changes: 33 additions & 72 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ name = "oxli"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version="0.19.0", features = ["extension-module", "anyhow"] }
pyo3 = { version="0.22.2", features = ["extension-module", "anyhow"] }
sourmash = "0.15.1"
anyhow = "1.0.86"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ impl KmerCountTable {
}

#[pymodule]
fn oxli(_py: Python, m: &PyModule) -> PyResult<()> {
fn oxli(m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<KmerCountTable>()?;
Ok(())
}

0 comments on commit 6e4704b

Please sign in to comment.