summaryrefslogtreecommitdiff
path: root/doc/developer
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2022-02-19 08:47:18 -0800
committerGitHub <noreply@github.com>2022-02-19 20:47:18 +0400
commit2db9682a176e2ae4192253aac1687f5dc001ea9a (patch)
treed6abae91068534c9a2f4f9a236d213624d32aa6d /doc/developer
parent6be18486825376d1dc25dc075da44684c7fcbc47 (diff)
downloadnetworkx-2db9682a176e2ae4192253aac1687f5dc001ea9a.tar.gz
Deprecate info (#5341)
Diffstat (limited to 'doc/developer')
-rw-r--r--doc/developer/deprecations.rst17
1 files changed, 9 insertions, 8 deletions
diff --git a/doc/developer/deprecations.rst b/doc/developer/deprecations.rst
index b05bea2c..990e0c3c 100644
--- a/doc/developer/deprecations.rst
+++ b/doc/developer/deprecations.rst
@@ -81,7 +81,7 @@ Version 3.0
* In ``utils/misc.py`` remove ``generate_unique_node`` and related tests.
* In ``algorithms/link_analysis/hits_alg.py`` remove ``hub_matrix`` and ``authority_matrix``
* In ``algorithms/link_analysis/hits_alg.py``, remove ``hits_numpy`` and ``hist_scipy``.
-* In ``networkx.classes`` remove the ``ordered`` module and the four ``Ordered``
+* In ``classes`` remove the ``ordered`` module and the four ``Ordered``
classes defined therein.
* In ``utils/decorators.py`` remove ``preserve_random_state``.
* In ``algorithms/community/quality.py`` remove ``coverage`` and ``performance``.
@@ -92,18 +92,19 @@ Version 3.0
* In ``algorithms/assortativity/connectivity.py`` remove ``k_nearest_neighbors``.
* In ``utils/decorators.py`` remove ``random_state``.
* In ``algorithms/operators/binary.py`` remove ``name`` kwarg from ``union`` and docstring.
-* In ``networkx/generators/geometric.py`` remove ``euclidean`` and tests.
-* In ``networkx/algorithms/node_classification/`` remove ``hmn.py``, ``lgc.py``,
+* In ``generators/geometric.py`` remove ``euclidean`` and tests.
+* In ``algorithms/node_classification/`` remove ``hmn.py``, ``lgc.py``,
and ``utils.py`` after moving the functions defined therein into the newly created
``node_classification.py`` module, which will replace the current package.
-* In ``networkx/algorithms/link_analysis/pagerank_alg.py``, remove the
+* In ``algorithms/link_analysis/pagerank_alg.py``, remove the
``np.asmatrix`` wrappers on the return values of ``google_matrix`` and remove
the associated FutureWarning.
-* In ``networkx/convert_matrix.py`` remove ``from_scipy_sparse_matrix`` and
+* In ``convert_matrix.py`` remove ``from_scipy_sparse_matrix`` and
``to_scipy_sparse_matrix``.
-* In ``networkx/linalg/attrmatrix.py`` remove the FutureWarning, update the
+* In ``linalg/attrmatrix.py`` remove the FutureWarning, update the
return type by removing ``np.asmatrix``, and update the docstring to
reflect that the function returns a ``numpy.ndarray`` instance.
-* In ``networkx/generators/small.py`` remove ``make_small_graph`` and
+* In ``generators/small.py`` remove ``make_small_graph`` and
``make_small_undirected_graph``.
-* In ``networkx/convert_matrix.py`` remove ``to_numpy_recarray``.
+* In ``convert_matrix.py`` remove ``to_numpy_recarray``.
+* In ``classes/function.py`` remove ``info``.