Skip to content

Commit

Permalink
Merge pull request #35 from microsoft/dev
Browse files Browse the repository at this point in the history
Release 1.1.1
  • Loading branch information
daxpryce authored Dec 21, 2021
2 parents a9e73aa + 0994179 commit 5816da5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/pyo3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graspologic_native"
version = "1.1.0"
version = "1.1.1"
authors = ["[email protected]"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/pyo3/graspologic_native.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def leiden(
use_modularity: bool,
seed: Optional[int],
trials: int
) -> Dict[str, int]: ...
) -> Tuple[float, Dict[str, int]]: ...

def hierarchical_leiden(
edges: List[Tuple[str, str, float]],
Expand Down
2 changes: 1 addition & 1 deletion packages/pyo3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl HierarchicalCluster {
/// clustering.
/// :return: The modularity of the best community partitioning and a dictionary of node to community
/// ids. The community ids will start at 0 and increment.
/// :rtype: Dict[str, int]
/// :rtype: Tuple[float, Dict[str, int]]
/// :raises ClusterIndexingError:
/// :raises EmptyNetworkError:
/// :raises InternalNetworkIndexingError: An internal algorithm error. Please report with reproduction steps.
Expand Down

0 comments on commit 5816da5

Please sign in to comment.