Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
lueckem committed Apr 11, 2024
1 parent 787c9f2 commit a3e7c3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sponet"
version = "2.0.0"
version = "2.1.0"
description = "Spreading Processes on Networks"
license = "GPL-3.0-or-later"
authors = ["Marvin Lücke"]
Expand Down
2 changes: 1 addition & 1 deletion sponet/network_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,5 +426,5 @@ def _unisolate_vertices(network: nx.Graph) -> None:
j = i
while j == i:
j = np.random.randint(0, network.number_of_nodes())
# print(i, j)

network.add_edge(i, j)

0 comments on commit a3e7c3e

Please sign in to comment.