Skip to content

Commit

Permalink
Fixing RTD 2
Browse files Browse the repository at this point in the history
  • Loading branch information
akusok committed Jan 21, 2016
1 parent 62fe7ac commit 5d979c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Mock(MagicMock):
def __getattr__(cls, name):
return Mock()

MOCK_MODULES = ['tables']
MOCK_MODULES = ['tables', 'numpy', 'scipy']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

import os
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ def readme():
'hpelm.modules',
'hpelm.tests',
'hpelm.nnets'],
install_requires=[
'numpy',
'scipy>=0.12'
],
# install_requires=[
# 'numpy',
# 'scipy>=0.12',
# 'tables'
# ],
scripts=['bin/elm_naive.py'],
test_suite='nose.collector',
tests_require=['nose'],
Expand Down

0 comments on commit 5d979c0

Please sign in to comment.