mirror of https://github.com/open-mmlab/mmcv.git
Fix the missing numpy module for readthedocs (#182)
* Fix the missing numpy module for readthedocs * fix the lintingpull/185/head
parent
0874642fb0
commit
e127ef28db
|
@ -49,7 +49,9 @@ extensions = [
|
|||
'recommonmark',
|
||||
]
|
||||
|
||||
autodoc_mock_imports = ['cv2', 'torch', 'enum', 'pathlib', 'mmcv._ext']
|
||||
autodoc_mock_imports = [
|
||||
'cv2', 'numpy', 'torch', 'enum', 'pathlib', 'mmcv._ext'
|
||||
]
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = ['_templates']
|
||||
|
|
Loading…
Reference in New Issue