summaryrefslogtreecommitdiff
path: root/doc/developer
diff options
context:
space:
mode:
authorDan Schult <dschult@colgate.edu>2023-03-28 14:46:34 -0400
committerGitHub <noreply@github.com>2023-03-28 11:46:34 -0700
commitb9a475476a14654b633744d6acb8d5d3fd239f16 (patch)
treeba4552aad9e2f3abb6bde5e1a8a9ca6eb384f78b /doc/developer
parent4a2bcaaa5c19408aff6e6945b7db24e58cbeb3e1 (diff)
downloadnetworkx-b9a475476a14654b633744d6acb8d5d3fd239f16.tar.gz
Deprecate shortest_path functions to have consistent return values in v3.3 (#6567)
* Deprecate single_target..._length to channge to return a dict in v3.3 * deprecate shortest_path in case of all_pairs
Diffstat (limited to 'doc/developer')
-rw-r--r--doc/developer/deprecations.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/developer/deprecations.rst b/doc/developer/deprecations.rst
index 7a80aa38..12582ef3 100644
--- a/doc/developer/deprecations.rst
+++ b/doc/developer/deprecations.rst
@@ -73,3 +73,7 @@ Version 3.3
~~~~~~~~~~~
* Remove the ``forest_str`` function from ``readwrite/text.py``. Replace
existing usages with ``write_network_text``.
+* Change ``single_target_shortest_path_length`` in ``algorithms/shortest_path/unweighted.py``
+ to return a dict. See #6527
+* Change ``shortest_path`` in ``algorithms/shortest_path/generic.py``
+ to return a iterator. See #6527