diff options
author | Mridul Seth <seth.mridul@gmail.com> | 2022-06-22 22:47:27 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 21:47:27 +0300 |
commit | e5f1edb82a379ceb6afcf421fa5f6b4cb43cfbaf (patch) | |
tree | ffc1ceb266038c5c571e30bd08abc772691d90a8 /networkx/conftest.py | |
parent | c5b87292078cb4e65128e723852f29f4cbae9078 (diff) | |
download | networkx-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.py | 6 |
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", |