Skip to content
Snippets Groups Projects
Commit e949854d authored by Vincent POLLET's avatar Vincent POLLET
Browse files

Merge branch 'doc_fix' into 'master'

Doc fix

See merge request !16
parents 2e092daa fde58647
Branches
Tags
1 merge request!16Doc fix
Pipeline #47581 passed
...@@ -41,6 +41,8 @@ from builtins import str ...@@ -41,6 +41,8 @@ from builtins import str
import numpy as np import numpy as np
from scipy.spatial import cKDTree from scipy.spatial import cKDTree
from bob.ip.stereo import Camera
from .utils import StreamArray, get_index_list, get_axis_size from .utils import StreamArray, get_index_list, get_axis_size
from .stream_file import StreamFile from .stream_file import StreamFile
......
...@@ -30,6 +30,7 @@ requirements: ...@@ -30,6 +30,7 @@ requirements:
- scikit-image {{ scikit_image }} - scikit-image {{ scikit_image }}
- opencv {{ opencv }} - opencv {{ opencv }}
- bob.extension - bob.extension
- bob.io.base
- bob.io.image - bob.io.image
- bob.ip.stereo - bob.ip.stereo
# place your other host dependencies here # place your other host dependencies here
......
...@@ -217,11 +217,11 @@ rst_epilog = """ ...@@ -217,11 +217,11 @@ rst_epilog = """
# Default processing flags for sphinx # Default processing flags for sphinx
autoclass_content = 'class' autoclass_content = 'class'
autodoc_member_order = 'bysource' autodoc_member_order = 'bysource'
autodoc_default_flags = [ autodoc_default_options = {
'members', 'members': True,
'undoc-members', 'undoc-members': True,
'show-inheritance', 'show-inheritance': True
] }
# For inter-documentation mapping: # For inter-documentation mapping:
......
...@@ -3,5 +3,6 @@ numpy ...@@ -3,5 +3,6 @@ numpy
scipy scipy
scikit-image scikit-image
# opencv We need opencv, but the opencv package is broken and can't be installed with pip. Install it with conda. # opencv We need opencv, but the opencv package is broken and can't be installed with pip. Install it with conda.
bob.io.base
bob.io.image bob.io.image
bob.ip.stereo bob.ip.stereo
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment