Skip to content
Snippets Groups Projects
Commit 896fdf4b authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Documentation requirements

parent bf6777bb
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -217,7 +217,12 @@ autodoc_default_flags = [ ...@@ -217,7 +217,12 @@ autodoc_default_flags = [
# For inter-documentation mapping: # For inter-documentation mapping:
from bob.extension.utils import link_documentation from bob.extension.utils import link_documentation
intersphinx_mapping = link_documentation(['python', 'numpy', 'bob.bio.face', 'bob.bio.speaker', 'bob.bio.gmm', 'bob.bio.video', 'bob.bio.csu', 'bob.bio.spear', 'gridtk', 'bob.db.youtube']) documentation_requirements = "../documentation-requirements.txt"
if os.path.exists(documentation_requirements):
intersphinx_mapping = link_documentation(requirements_file=documentation_requirements)
else:
intersphinx_mapping = link_documentation()
# We want to remove all private (i.e. _. or __.__) members # We want to remove all private (i.e. _. or __.__) members
# that are not in the list of accepted functions # that are not in the list of accepted functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment