Skip to content

Commit

Permalink
added future as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Avsecz committed Sep 15, 2016
1 parent 272cbae commit 5596029
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,5 +284,5 @@ class Mock(MagicMock):
def __getattr__(cls, name):
return Mock()

MOCK_MODULES = ['builtins', 'pygtk', 'gtk', 'gobject', 'argparse', 'numpy', 'pandas']
MOCK_MODULES = ['future', 'builtins', 'pygtk', 'gtk', 'gobject', 'argparse', 'numpy', 'pandas']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"scipy",
"scikit-learn",
"matplotlib",
'future',
]

test_requirements = [
Expand Down

0 comments on commit 5596029

Please sign in to comment.