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
to build the documentation (html being replaced with the correct backend).
Would it be possible to support specifying an alternative build command, e.g.:
python setup.py build_sphinx
A nice advantage why I'm using python setup.py build_sphinx in my projects is that it allows one to avoid redefining project's project, version, release and copyright variables by specifying the following in setup.py:
I'm -0 on this change, there are several other ways around this already, and we're working in another direction to simplify the configuration process. This is also an option specific to Python, we're moving more towards language-agnostic options.
For some reason I need to run build as: python setup.py build_sphinx
So is it possible to invoke command in a such way using readthedocs.yml or any other approach (configuration process)?
For some reason I need to run build as: python setup.py build_sphinx So is it possible to invoke command in a such way using readthedocs.yml or any other approach (configuration process)?
What is the reason behind this? Maybe the issue is solved in a better way differently
According to Build Process documentation, RTD's build process runs:
to build the documentation (
html
being replaced with the correct backend).Would it be possible to support specifying an alternative build command, e.g.:
A nice advantage why I'm using
python setup.py build_sphinx
in my projects is that it allows one to avoid redefining project'sproject
,version
,release
andcopyright
variables by specifying the following insetup.py
:Using the above, these values are defined only once in a project.
The text was updated successfully, but these errors were encountered: