rm CondaPkg environment

This commit is contained in:
ton
2023-04-06 13:53:47 +07:00
parent 0a57ed7884
commit c43d949309
3329 changed files with 5725 additions and 447022 deletions

View File

@@ -68,6 +68,19 @@ def set_warnings():
category=DeprecationWarning,
message="\n\nThe `attrs` keyword argument of node_link",
)
warnings.filterwarnings(
"ignore",
category=DeprecationWarning,
message="single_target_shortest_path_length will",
)
warnings.filterwarnings(
"ignore",
category=DeprecationWarning,
message="shortest_path for all_pairs",
)
warnings.filterwarnings(
"ignore", category=DeprecationWarning, message="\nforest_str is deprecated"
)
@pytest.fixture(autouse=True)
@@ -140,6 +153,7 @@ needs_numpy = [
"linalg/bethehessianmatrix.py",
"linalg/laplacianmatrix.py",
"utils/misc.py",
"algorithms/centrality/laplacian.py",
]
needs_scipy = [
"algorithms/approximation/traveling_salesman.py",
@@ -169,6 +183,7 @@ needs_scipy = [
"linalg/modularitymatrix.py",
"linalg/spectrum.py",
"utils/rcm.py",
"algorithms/centrality/laplacian.py",
]
needs_matplotlib = ["drawing/nx_pylab.py"]
needs_pandas = ["convert_matrix.py"]