docs: fix patch links - #246
Merged
Merged
Conversation
Contributor
|
justeph
force-pushed
the
docs-fix-patch-link
branch
from
August 19, 2026 14:14
c41446e to
943440a
Compare
We can specify the patched key in yaml to automatically populate the link to the patches applied to a given version. Currently this handl only packages built and deployed from gitlab pipelines, with link to the old GitLab instance. Add logic to also handle packages built and deploy from GitHub, and generate correct link pointing to the new GitHub instance. To be found, patches must be under patches/<package_name>/<package_version> with package_name and package_version matching values from the .whl Rename patches/torch/2.13.0 to patches/torch/2.13.0+cpu This will fixes missing patch links for the following packages: matplotlib pillow torch zstandard Fixes: #209 Signed-off-by: Julien Stephan <jstephan@baylibre.com>
justeph
force-pushed
the
docs-fix-patch-link
branch
from
August 19, 2026 14:16
943440a to
393ebd3
Compare
Collaborator
Author
|
I cancelled torch build, to avoid resource consumption, the main point being to test the patch process which succeed so I think it's ready to merge |
Collaborator
Author
|
Note: if you click on the preview doc and go on the torch page, the patch link is present but is broken, which is expected because the renaming of the folder from 2.13.0 to 2.13.0+cpu is embedded into this PR and link points to main |
luhenry
approved these changes
Aug 19, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We can specify the patched key in yaml to automatically populate the link to the patches applied to a given version. Currently this handl only packages built and deployed from gitlab pipelines, with link to the old GitLab instance. Add logic to also handle packages built and deploy from GitHub, and generate correct link pointing to the new GitHub instance.
To be found, patches must be under
patches/<package_name>/<package_version> with package_name and package_version matching values from the .whl
Rename patches/torch/2.13.0 to patches/torch/2.13.0+cpu
This will fixes missing patch links for the following packages: matplotlib
pillow
torch
zstandard
Fixes: #209