Skip to content

Commit

Permalink
Add a diagnostics extra (includes bokeh) (dask#4924)
Browse files Browse the repository at this point in the history
* Add a diagnostics extra (includes bokeh)

* Bump bokeh minimum to 0.13.0

* Add to `test_imports`
  • Loading branch information
jakirkham authored and jcrist committed Jun 14, 2019
1 parent 773f775 commit d8ff4c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions continuous_integration/travis/test_imports.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ source activate test-imports
(test_import "Bag" "toolz partd cloudpickle" "import dask.bag") && \
(test_import "Array" "toolz numpy" "import dask.array") && \
(test_import "Dataframe" "numpy pandas toolz partd cloudpickle" "import dask.dataframe") && \
(test_import "Diagnostics" "bokeh" "import dask.diagnostics") && \
(test_import "Distributed" "distributed s3fs" "import dask.distributed")
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
'dataframe': ['numpy >= 1.13.0', 'pandas >= 0.21.0', 'toolz >= 0.7.3',
'partd >= 0.3.10', 'cloudpickle >= 0.2.1'],
'distributed': ['distributed >= 1.22'],
'diagnostics': ['bokeh >= 0.13.0'],
'delayed': ['toolz >= 0.7.3'],
}
extras_require['complete'] = sorted(set(sum(extras_require.values(), [])))
Expand Down

0 comments on commit d8ff4c4

Please sign in to comment.