| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Added Graph.Nearest_Neighbor_Graph().
Added node_in_weights argument to Graph.community_leiden().
Added align_layout() to align the principal axes of a layout nicely with screen dimensions.
Added Graph.commnity_voronoi().
Added Graph.commnity_fluid_communities().
The C core of igraph was updated to version 1.0.0.
Most layouts are now auto-aligned using align_layout().
Dropped support for PyPy 3.9 and PyPy 3.10 as they are now EOL.
Documentation improvements.
This is the last version that supports Python 3.9 as it will reach its end of life at the end of October 2025.
Full Changelog: 0.11.9...1.0.0
Dropped support for Python 3.8 as it has now reached its end of life.
The C core of igraph was updated to version 0.10.16.
Added Graph.simple_cycles() to find simple cycles in the graph.
Full Changelog: 0.11.6...0.11.8
Full Changelog: 0.11.5...0.11.6
Graph.are_connected() has now been renamed to Graph.are_adjacent(), following up a similar change in the C core. The old name of the function is deprecated but will be kept around until at least 0.12.0.
The C core of igraph was updated to version 0.10.12.
Deprecated PyCObject API calls in the C code were replaced by calls to PyCapsule, thanks to @DavidRConnell in #763
get_shortest_path() documentation was clarified by @JDPowell648 in #764
It is now possible to link to an existing igraph C core on MSYS2, thanks to @Kreijstal in #770
Full Changelog: 0.11.4...0.11.5
Added Graph.Prufer() to construct a graph from a Prüfer sequence.
Added Graph.Bipartite_Degree_Sequence() to construct a bipartite graph from a bidegree sequence.
Fixed import of graph-tool graphs for vertex properties where each property has a vector value.
Graph.Adjacency() now accepts Matrix instances and other sequences as an input, it is not limited to lists-of-lists-of-ints any more.
python-igraph is now tested in Python 3.12.
Added weights=... keyword argument to Graph.layout_kamada_kawai().
Fixed drawing order of vertices in the Plotly backend (#691).
Fixed plotting of null graphs with the Matplotlib backend.
Yes, the version number is correct - igraph 0.10.7 has never made it to PyPI. It is tagged in the repository, but it has never been released officially. The changelog below lists the changes between igraph 0.10.6 and 0.10.8.
Added is_bigraphical() to test whether a pair of integer sequences can be the degree sequence of some bipartite graph.
Added weights=... keyword argument to Graph.radius() and Graph.eccentricity().
Graph.distances(), Graph.get_shortest_path() and Graph.get_shortest_paths() now allow the user to select the algorithm to be used explicitly.
The C core of igraph was updated to version 0.10.7.
Graph.distances() now uses Dijkstra's algorithm when there are zero weights but no negative weights. Earlier versions switched to Bellman-Ford or Johnson in the presence of zero weights unnecessarily.
Fixed a bug in EdgeSeq.select(_incident=...) for undirected graphs.
Fixed a memory leak in Graph.distances() when attempting to use Johnson's algorithm with mode != "out"
The C core of igraph was updated to version 0.10.6.
Graph.Incidence() is now deprecated in favour of Graph.Biadjacency() as it constructs a bipartite graph from a bipartite adjacency matrix. (The previous name was a mistake). Future versions might re-introduce Graph.Incidence() to construct a graph from its incidence matrix.
Graph.get_incidence() is now deprecated in favour of Graph.get_biadjacency() as it returns the bipartite adjacency matrix of a graph and not its incidence matrix. (The previous name was a mistake). Future versions might re-introduce Graph.get_incidence() to return the incidence matrix of a graph.
Reverted the change in 0.10.5 that prevented adding vertices with integers as vertex names. Now we show a deprecation warning instead, and the addition of vertices with integer names will be prevented from version 0.11.0 only.
Fixed a minor memory leak in Graph.decompose().
The default vertex size of the Plotly backend was fixed so the vertices are now visible by default without specifying an explicit size for them.
| Back | FazBrowse Home | New Git URL |