Open
Description
Hi,
I thought I had already raised an issue for this, but just realized that was not the case.
We've been busy writing a shiny new documentation for LISA, but for some reason references to devlib (and workload-automation) fail to be resolved:
lisa/doc/target.rst:8: WARNING: py:class reference target not found: devlib.target.Target
(https://my-lisa.readthedocs.io/en/lisa-next/target.html#introduction)
For now we ignore sphinx build errors that mention devlib/wa, but it'd be nice to get these working. I don't really know why these two specific projects cause us problems though - trappy works fine for instance: https://my-lisa.readthedocs.io/en/lisa-next/trace_analysis.html#introduction
FWIW this is our intersphinx mapping:
intersphinx_mapping = {
'python' : ('https://docs.python.org/3', None),
'pandas' : ('https://pandas.pydata.org/pandas-docs/stable/', None),
'matplotlib' : ('https://matplotlib.org', None),
# XXX: Doesn't seem to work, might be due to how devlib doc is generated
'devlib' : ('https://pythonhosted.org/devlib/', None),
'trappy' : ('https://pythonhosted.org/TRAPpy', None),
'bart' : ('https://pythonhosted.org/bart-py/', None),
'wa' : ('https://pythonhosted.org/wlauto/', None),
}