0

How can I check in the build logs if readthedocs.yml has been used?

This should install sphinx-argparse but it does not.

My project: https://gpxity.readthedocs.io

I added readthedocs.yml with

 extra_requirements: 

   - doc

and in setup.py:

extras_require={ ...'doc': ['sphinx', 'sphinx-autodoc-annotation', 'sphinx-argparse']}

Community
  • 1
  • 1

1 Answers1

0

In readthedocs.yml, I had to replace setup_py_install with pip_install.

Since this is an inconstistent configuration according to the documentation, it would be nice to get a warning or even an error message.

See docs.readthedocs