Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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:
- Loading branch information