Open mwaskom opened 1 year ago
I looked into this. The error stems from incompatibility between the pinned version of pydata_sphinx_theme (0.10.0rc2) and sphinx6 and is described here. If an update to the pinned theme version is considered, updating to pydata_sphinx_theme to 0.13.0 and above solves this. Another option suggested in the linked issue is to add a "logo" entry to the sphinx configuration file, and it works as well:
html_theme_options = {
"logo": {
"image_light": "logo-wide-lightbg.png",
"image_dark": "logo-wide-darkbg.png",
}
Going to pin the doc dependencies for now but will need to look into this...