diff options
| author | Dan Schult <dschult@colgate.edu> | 2023-03-28 14:46:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-28 11:46:34 -0700 |
| commit | b9a475476a14654b633744d6acb8d5d3fd239f16 (patch) | |
| tree | ba4552aad9e2f3abb6bde5e1a8a9ca6eb384f78b /doc/developer | |
| parent | 4a2bcaaa5c19408aff6e6945b7db24e58cbeb3e1 (diff) | |
| download | networkx-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.rst | 4 |
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 |
