Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions graspologic/pipeline/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
is to bridge this gap.

"""

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

Expand Down
6 changes: 3 additions & 3 deletions graspologic/pipeline/embed/omnibus_embedding.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ def omnibus_embedding_pairwise(
for graph in graphs[1:]:
union_graph.add_edges_from(graph.edges())

union_graph_lcc: Union[
nx.Graph, nx.Digraph, nx.OrderedGraph, nx.OrderedDiGraph
] = largest_connected_component(union_graph)
union_graph_lcc: Union[nx.Graph, nx.Digraph, nx.OrderedGraph, nx.OrderedDiGraph] = (
largest_connected_component(union_graph)
)
union_graph_lcc_nodes: Set[Any] = set(list(union_graph_lcc.nodes()))

union_node_ids = np.array(list(union_graph_lcc_nodes))
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ python_requires = >=3.8, <3.12
install_requires =
anytree>=2.8.0
beartype>=0.10.0
gensim>=4.0.0,!=4.2.0 # bug with 4.2.0 on some platforms, issue #998
gensim>=4.3.2
graspologic-native>=1.1.1
hyppo>=0.3.2 # bug with lower versions and scipy>=1.8
joblib>=0.17.0 # Older versions of joblib cause issue #806. Transitive dependency of hyppo.
Expand Down