Skip to content

Commit

Permalink
Still futzing around trying to get docs to build
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnVinyard committed Aug 27, 2017
1 parent 6dce0a7 commit 9c061df
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 17 deletions.
13 changes: 11 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,5 +294,14 @@
#texinfo_no_detailmenu = False

# Fake imports
import fake_cffi
sys.modules['cffi'] = sys.modules['fake_cffi']
import mock

MOCK_MODULES = [
'cffi',
'numpy',
'scipy',
'scipy.fftpack'
]

for mod_name in MOCK_MODULES:
sys.modules[mod_name] = mock.Mock()
15 changes: 0 additions & 15 deletions docs/source/fake_cffi.py

This file was deleted.

1 change: 1 addition & 0 deletions docs/source/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mock

0 comments on commit 9c061df

Please sign in to comment.