You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at your requirements files, I notice that sphinx itself isn't explicitly listed in either requirements file. While some dependencies might pull it in as a secondary dependency, it's better to explicitly specify it.
I'd suggest updating your docs/requirements.txt to
I see the issue now. There are a few potential problems:
The sphinx-notes/pages@v3 action you're using is quite minimal and might not be installing all required dependencies. Your documentation requires several extensions (numpydoc, m2r2, etc.).
The mdinclude directive you're using in index.rst comes from m2r2, but the dependencies need to be properly installed.
I'd recommend modifying your sphinx-to-github-pages.yml workflow to explicitly install the dependencies:
0 commit comments