Correct all remaining warnings during the build of the docs
This commit is contained in:
parent
415c92f803
commit
b8b3cf540e
|
@ -45,7 +45,7 @@ jobs:
|
|||
pre-build-command: |
|
||||
apt-get --allow-releaseinfo-change update -y && apt-get install -y git && git --version
|
||||
python -m pip install --upgrade pip setuptools wheel
|
||||
python -m pip install -e .[composable,docs]
|
||||
python -m pip install -e .[composable,neural,docs]
|
||||
docs-folder: "docs/"
|
||||
- name: Publish documentation
|
||||
run: |
|
||||
|
|
|
@ -36,6 +36,7 @@ extensions = [
|
|||
'sphinx.ext.autosummary',
|
||||
'sphinx.ext.viewcode',
|
||||
'sphinx.ext.napoleon',
|
||||
'sphinx.ext.intersphinx',
|
||||
'myst_parser',
|
||||
]
|
||||
|
||||
|
@ -55,6 +56,10 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|||
html_theme = 'sphinx_rtd_theme'
|
||||
# html_theme = 'furo'
|
||||
# need to be installed: pip install furo (not working...)
|
||||
html_static_path = ['_static']
|
||||
# html_static_path = ['_static']
|
||||
|
||||
# intersphinx configuration
|
||||
intersphinx_mapping = {
|
||||
"sklearn": ("https://scikit-learn.org/stable/", None),
|
||||
}
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ quapy.method.non\_aggregative module
|
|||
:show-inheritance:
|
||||
|
||||
quapy.method.composable module
|
||||
------------------------
|
||||
------------------------------
|
||||
|
||||
.. automodule:: quapy.method.composable
|
||||
:members:
|
||||
|
|
Loading…
Reference in New Issue