1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Sat, 17 Aug 2019 17:57:38 +0000
Subject: autodoc_mock_imports
Forwarded: not-needed
---
docs/source/conf.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 1f07bba..8a0568d 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -15,6 +15,7 @@ import sys
import os
from os.path import join
+autodoc_mock_imports = ['mayavi', 'tvtk', 'pyface', 'traits']
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
|