X Tutup
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@
raise ImportError("No module named mock - you need to install "
"mock to build the documentation")

try:
from PIL import Image
except ImportError:
raise ImportError("No module named Image - you need to install "
"pillow to build the documentation")


try:
import matplotlib
except ImportError:
Expand Down
X Tutup