Deprecations#
Policy#
If the behavior of the library has to be changed, a deprecation cycle must be followed to warn users.
A deprecation cycle is not necessary when:
adding a new function, or
adding a new keyword argument to the end of a function signature, or
fixing buggy behavior
A deprecation cycle is necessary for any breaking API change, meaning a change where the function, invoked with the same arguments, would return a different result after the change. This includes:
changing the order of arguments or keyword arguments, or
adding arguments or keyword arguments to a function, or
changing the name of a function, class, method, etc., or
moving a function, class, etc. to a different module, or
changing the default value of a function’s arguments.
Usually, our policy is to put in place a deprecation cycle over two minor releases (e.g., if a deprecation warning appears in 2.3, then the functionality should be removed in 2.5). For major releases we usually require that all deprecations have at least a 1-release deprecation cycle (e.g., if 3.0 occurs after 2.5, then all removed functionality in 3.0 should be deprecated in 2.5).
Note that these 1- and 2-release deprecation cycles for major and minor releases is not a strict rule and in some cases, the developers can agree on a different procedure upon justification (like when we can’t detect the change, or it involves moving or deleting an entire function for example).
Todo#
Make sure to review networkx/conftest.py
after removing deprecated code.
Version 3.0#
In
readwrite/gml.py
removeliteral_stringizer
and related tests.In
readwrite/gml.py
removeliteral_destringizer
and related tests.Remove
copy
method in the coreview Filtered-related classes and related tests.In
algorithms/link_analysis/pagerank_alg.py
replacepagerank
withpagerank_scipy
.In
algorithms/link_analysis/pagerank_alg.py
renamepagerank_numpy
as_pagerank_numpy
.In
convert_matrix.py
removeorder
kwarg fromto_pandas_edgelist
and docstringIn
algorithms/operators/binary.py
removename
kwarg fromunion
and docstring.In
algorithms/link_analysis/pagerank_alg.py
, remove thenp.asmatrix
wrappers on the return values ofgoogle_matrix
and remove the associated FutureWarning.In
linalg/attrmatrix.py
remove the FutureWarning, update the return type by removingnp.asmatrix
, and update the docstring to reflect that the function returns anumpy.ndarray
instance.In
algorithms/distance_measures.py
removeextrema_bounding
.In
algorithms/matching.py
, remove parametermaxcardinality
frommin_weight_matching
.
Version 3.2#
In
generators/directed.py
remove thecreate_using
keyword argument for thescale_free_graph
function.Remove pydot functionality
drawing/nx_pydot.py
, if pydot is still not being maintained. See #5723In
readwrite/json_graph/node_link.py
remove theattrs` keyword code and docstring in ``node_link_data
andnode_link_graph
. Also the associated tests.
Version 3.3#
Remove the
forest_str
function fromreadwrite/text.py
. Replace existing usages withwrite_network_text
.Change
single_target_shortest_path_length
inalgorithms/shortest_path/unweighted.py
to return a dict. See #6527Change
shortest_path
inalgorithms/shortest_path/generic.py
to return a iterator. See #6527