Skip to content
Open
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
5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@

# HACKS: pytables is a difficult dependency to build, so just mock it when
# generating docs - this makes sure the docs build fully for ulmo.readthedocs.org
import mock
try:
from unittest import mock
except ImportError:
import mock
sys.modules['tables'] = mock.MagicMock()
sys.modules['tables.scripts'] = mock.MagicMock()

Expand Down