Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test sphinx mapping to networkx #4323

Merged
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions python/cugraph/cugraph/structure/convert_matrix.py
Original file line number Diff line number Diff line change
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
Loading