forked from M-Labs/artiq
doc: minimize dependencies for manual
This commit is contained in:
parent
653eee071d
commit
c155fd3849
|
@ -28,7 +28,13 @@ class Mock(MagicMock):
|
|||
return Mock()
|
||||
|
||||
|
||||
mock_modules = ["artiq.gui.moninj", "quamash", "pyqtgraph", "matplotlib"]
|
||||
mock_modules = ["artiq.gui.moninj",
|
||||
"artiq.gui.waitingspinnerwidget",
|
||||
"artiq.gui.flowlayout",
|
||||
"quamash", "pyqtgraph", "matplotlib",
|
||||
"numpy", "dateutil", "dateutil.parser", "prettytable", "PyQt5",
|
||||
"h5py", "serial", "scipy", "scipy.interpolate", "asyncserial",
|
||||
"llvmlite_artiq", "Levenshtein", "aiohttp"]
|
||||
|
||||
for module in mock_modules:
|
||||
sys.modules[module] = Mock()
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
sphinx_rtd_theme
|
||||
sphinx-argparse
|
||||
sphinxcontrib-wavedrom
|
||||
pythonparser
|
Loading…
Reference in New Issue