Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions docs/cugraph/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,17 @@
'Miscellaneous'),
]

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}

# Connect docs in other projects
intersphinx_mapping = {
"networkx": (
"https://networkx.org/documentation/stable/",
"https://networkx.org/documentation/stable/objects.inv",
),
"python": (
"https://docs.python.org/3",
"https://docs.python.org/3/objects.inv",
),
}

# Config numpydoc
numpydoc_show_inherited_class_members = False
Expand Down
4 changes: 3 additions & 1 deletion python/cugraph/cugraph/structure/convert_matrix.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019-2023, NVIDIA CORPORATION.
# Copyright (c) 2019-2024, NVIDIA CORPORATION.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Expand Down Expand Up @@ -277,6 +277,8 @@ def from_pandas_edgelist(
renumber=True,
):
"""
See :func:`networkx.convert_matrix.from_pandas_edgelist`.

Initialize a graph from the edge list. It is an error to call this
method on an initialized Graph object. Source argument is source
column name and destination argument is destination column name.
Expand Down