You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The number_of_selfloops() graph method was deprecated in the networkx
2.0 release[1] which was released in 2017 and replaced with a
function that provides the same functionality. In the recent 2.4 release
this deprecated method has been removed. This commit updates the use of
number_of_selfloops to use that function instead of the deprecated and
now removed method. It also increases the minimum version supported by
the library to use 2.0 which was the version this function was
introduced.
Fixeschebee7i#14
[1] https://networkx.github.io/documentation/stable/release/release_2.0.html#api-changes
The
to_pydot
method was using a deprecated function: https://github.com/chebee7i/nxpd/blob/master/nxpd/nx_pydot.py#L249 which has been removed in the latest release 2.4.0: https://networkx.github.io/documentation/stable/release/release_2.4.html#deprecationsThe text was updated successfully, but these errors were encountered: