Skip to content

Commit

Permalink
replace 'DeprecatedWarning' by 'FutureWarning'
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Sep 18, 2023
1 parent 2206c47 commit 7e6d3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/community/ktruss_subgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def ktruss_subgraph(
"and will be removed in the next release. if weights "
"were passed at the graph creation, they will be used."
)
warnings.warn(warning_msg, DeprecationWarning)
warnings.warn(warning_msg, FutureWarning)

sources, destinations, edge_weights, _ = pylibcugraph_k_truss_subgraph(
resource_handle=ResourceHandle(),
Expand Down

0 comments on commit 7e6d3a8

Please sign in to comment.