Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Remove bokeh requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Jan 22, 2024
1 parent faf4d27 commit 8b3f9cb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Mock(MagicMock):
def __getattr__(cls, name):
return MagicMock()

MOCK_MODULES = ['pygtk', 'gtk', 'gobject', 'argparse', 'numpy', 'pandas', 'bokeh']
MOCK_MODULES = ['pygtk', 'gtk', 'gobject', 'argparse', 'numpy', 'pandas']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

# -- Options for HTML output ----------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
cython >= 0.23.5
numpy >= 1.10.2
pandas >= 0.17.1
bokeh == 0.12.7
dataset == 0.8
tornado
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
install_requires += ['numpy >= 1.10.2']
if ('APPVEYOR' not in os.environ) or ('TRAVIS' not in os.environ):
install_requires += ['pandas >= 0.17.1',
'bokeh == 0.12.16',
'tornado']


Expand Down

0 comments on commit 8b3f9cb

Please sign in to comment.