Skip to content

Commit

Permalink
fixed IO bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
magnanim committed Nov 2, 2024
1 parent ff038d9 commit d690bf6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion C++/py_functions1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,8 @@ PyMLNetwork
readMultilayer(const std::string& input_file,
const std::string& name, bool vertex_aligned)
{
return PyMLNetwork(uu::net::read_multilayer_network(input_file,name,vertex_aligned));
auto n = PyMLNetwork(uu::net::read_multilayer_network(input_file,name,vertex_aligned));
return n;
}


Expand Down
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# version 2.2.1

- Fixed I/O bugs.

# version 2.2

- Added resolution parameter and weights to generalised Louvain.
Expand Down
2 changes: 1 addition & 1 deletion ext/pybind11
Submodule pybind11 updated 132 files
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "uunet"
version= "2.2"
version= "2.2.1"
authors = [
{name = "Matteo Magnani", email = "matteo.magnani@it.uu.se"}
]
Expand Down

0 comments on commit d690bf6

Please sign in to comment.