Skip to content

Commit 08e7c91

Browse files
authored
Address PendingDeprecationWarning from _from_edgelist (#4388)
`__from_edgelist`'s default is causing a `PendingDeprecationWarning` from having a default of `legacy_renum_only=True`. It appears that this parameter has no effect so it should be OK to change the default so that this warning doesn't appear Authors: - Matthew Roeschke (https://github.com/mroeschke) Approvers: - Rick Ratzel (https://github.com/rlratzel) URL: #4388
1 parent 74128e8 commit 08e7c91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cugraph/cugraph/structure/graph_implementation/simpleGraph.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def __from_edgelist(
131131
edge_id=None,
132132
edge_type=None,
133133
renumber=True,
134-
legacy_renum_only=True,
134+
legacy_renum_only=False,
135135
store_transposed=False,
136136
):
137137
if legacy_renum_only:

0 commit comments

Comments
 (0)