-
Notifications
You must be signed in to change notification settings - Fork 80
Fix pull-request.yml build errors by addressing Sphinx warnings and adding missing label definition #508
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
Conversation
Per build warning; WARNING: Calling get_html_theme_path is deprecated. If you are calling it to define html_theme_path, you are safe to remove that code. So removing the code to get rid of warning. Signed-off-by: Christopher Turner <christopher.g.turner@intel.com>
the option for display_version for the sphinx-rtd-theme was deprecated since v3.0.0 Signed-off-by: Christopher Turner <christopher.g.turner@intel.com>
|
|
||
| Installation | ||
| ************ | ||
| .. _intel_firmware_paths: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, it isn't supposed to be here, it was removed by 0576be4#diff-8a57b48ec6926ea189c9ca3cf80b81def022dd4d1a55c6be760f6892d92255d8L165
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that commit removed it from getting_started/intel_debug/introduction.rst not from the llext_modules.rst.
I guess the link in line 81/82 should be changed to _intel_modular_firmware_paths
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for taking a look hadn't seen the history (should've double checked that) will make the necessary changes then
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok updated with the link to intel_modular_firmware_paths and removed previous changes that were incorrect
…mware paths update broken link to Intel firmware paths in llext_modules.rst from intel_firmware_paths to intel_modular_firmware_paths to point to correct location and fix doc build errors. Signed-off-by: Christopher Turner <christopher.g.turner@intel.com>
This pull request addresses the build errors caused by Sphinx warnings and a missing label definition in the documentation. The following changes have been made:
Update link to for
intel_modular_firmware_paths:intel_firmware_pathstointel_modular_firmware_pathsindeveloper_guides/firmware/llext_modules.rstto resolve the docs build error.Remove deprecated
display_versionconfiguration:display_versionoption fromhtml_theme_optionsinconf.pyas it was deprecated insphinx-rtd-themesince v3.0.0.Remove unused
html_theme_pathconfiguration:html_theme_pathconfiguration fromconf.pyto get rid of the deprecation warning.These changes should resolve the build errors and ensure that the documentation builds successfully without warnings.
Changes
developer_guides/firmware/llext_modules.rst: Fixed link tointel_modular_firmware_paths.conf.py: Removed deprecateddisplay_versionconfiguration and unusedhtml_theme_pathconfiguration.Signed-off-by
Christopher Turner christopher.g.turner@intel.com