summaryrefslogtreecommitdiff
path: root/networkx/conftest.py
diff options
context:
space:
mode:
authorMridul Seth <seth.mridul@gmail.com>2022-06-22 22:47:27 +0400
committerGitHub <noreply@github.com>2022-06-22 21:47:27 +0300
commite5f1edb82a379ceb6afcf421fa5f6b4cb43cfbaf (patch)
treeffc1ceb266038c5c571e30bd08abc772691d90a8 /networkx/conftest.py
parentc5b87292078cb4e65128e723852f29f4cbae9078 (diff)
downloadnetworkx-e5f1edb82a379ceb6afcf421fa5f6b4cb43cfbaf.tar.gz
Make HITS numpy and scipy private functions (#5771)
* Make HITS numpy and scipy private functions * fix examples with correct imports * remove functions from TOC
Diffstat (limited to 'networkx/conftest.py')
-rw-r--r--networkx/conftest.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/networkx/conftest.py b/networkx/conftest.py
index 823ea487..4d10fd43 100644
--- a/networkx/conftest.py
+++ b/networkx/conftest.py
@@ -94,12 +94,6 @@ def set_warnings():
"ignore", category=DeprecationWarning, message="`assert_graphs_equal`"
)
warnings.filterwarnings(
- "ignore", category=DeprecationWarning, message="networkx.hits_scipy"
- )
- warnings.filterwarnings(
- "ignore", category=DeprecationWarning, message="networkx.hits_numpy"
- )
- warnings.filterwarnings(
"ignore",
category=FutureWarning,
message="google_matrix will return an np.ndarray instead of a np.matrix",