-
Notifications
You must be signed in to change notification settings - Fork 662
Make intersphinx references release-aware #8549
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -210,10 +210,13 @@ | |
|
|
||
| # Example configuration for intersphinx: refer to the Python standard library. | ||
| intersphinx_mapping = { | ||
| # TODO: Use stable URLs once subpath redirects are available: | ||
| # https://github.com/rapidsai/build-infra/issues/395 | ||
| # Versioned URLs keep intersphinx links immutable in archived docs: | ||
| # https://github.com/rapidsai/build-planning/issues/320 | ||
| # rapids-pre-commit-hooks: disable-next-line | ||
| "cudf": ("https://docs.nvidia.com/cudf/26.10/", None), | ||
| "cudf": ( | ||
| f"https://docs.nvidia.com/cudf/{version}/", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | ⚡ Quick win Restore branch-aware inventory selection before merge. Lines [217] and [232] always interpolate Select one shared documentation target: As per path instructions, documentation changes must keep version numbers and terminology consistent with the code. Also applies to: 232-232 🤖 Prompt for AI AgentsSource: Path instructions |
||
| None, | ||
| ), | ||
| "numpy": ("https://numpy.org/doc/stable/", None), | ||
| "python": ("https://docs.python.org/3", None), | ||
| # TODO: re-enable once scipy docs are more reliable | ||
|
|
@@ -225,7 +228,10 @@ | |
| None, | ||
| ), | ||
| # rapids-pre-commit-hooks: disable-next-line | ||
| "rmm": ("https://docs.nvidia.com/rmm/26.10/", None), | ||
| "rmm": ( | ||
| f"https://docs.nvidia.com/rmm/{version}/", | ||
| None, | ||
| ), | ||
| } | ||
|
|
||
| # Config numpydoc | ||
|
|
||