Skip to content

Commit

Permalink
Merge pull request #5 from anergictcell/update/hpo0.8.2
Browse files Browse the repository at this point in the history
Update HPO version to 2024-03-06
  • Loading branch information
anergictcell authored Mar 9, 2024
2 parents bf758f6 + 0792ee7 commit 98efa9e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hpo3"
version = "1.0.2"
version = "1.0.3"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -9,7 +9,7 @@ name = "pyhpo"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.18.0", features = ["extension-module"] }
hpo = "0.8.1"
rayon = "1.6.1"
once_cell = "1.17"
pyo3 = { version = "0.20.3", features = ["extension-module"] }
hpo = "0.8.2"
rayon = "1.9.0"
once_cell = "1.19"
Binary file modified data/ontology.hpo
Binary file not shown.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ fn pyhpo(_py: Python, m: &PyModule) -> PyResult<()> {
m.add_class::<PyInformationContent>()?;
m.add_function(wrap_pyfunction!(linkage::linkage, m)?)?;
m.add("Ontology", ont)?;
m.add("BasicHPOSet", set::BasicPyHpoSet::default())?;
m.add("HPOPhenoSet", set::PhenoSet::default())?;
m.add("BasicHPOSet", set::BasicPyHpoSet)?;
m.add("HPOPhenoSet", set::PhenoSet)?;
m.add("__version__", env!("CARGO_PKG_VERSION"))?;
m.add("__backend__", env!("CARGO_PKG_NAME"))?;
m.add_function(wrap_pyfunction!(batch_similarity, m)?)?;
Expand Down

0 comments on commit 98efa9e

Please sign in to comment.