Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Python, jlab, and tornado versions. #57

Merged
merged 5 commits into from
Jul 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions base-notebook/binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: pangeo
channels:
- conda-forge
dependencies:
- python=3.6
- python=3.7
- jupyter
- jupyterlab
- jupyterlab=1.0.1
- jupyterhub
- tornado=5.1.1
- tornado=6.0.3
- bokeh
- dask>=2.0.0
- dask-kubernetes>=0.9.0
- nbserverproxy
- ipywidgets
- graphviz
- dask-labextension==0.3.1
- dask-labextension==0.3.3
3 changes: 2 additions & 1 deletion base-notebook/binder/postBuild
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ jupyter serverextension enable --sys-prefix --py nbserverproxy
jupyter nbextension enable --sys-prefix --py widgetsnbextension

# labextensions
jupyter labextension install dask-labextension@0.3.0 \

jupyter labextension install dask-labextension@1.0.0-rc.0 \
@jupyter-widgets/jupyterlab-manager \
@jupyterlab/hub-extension

Expand Down
6 changes: 3 additions & 3 deletions base-notebook/binder/tests/test_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ def test_pinned_versions():
import dask_kubernetes
import dask_labextension

assert LooseVersion(tornado.version) == LooseVersion('5.1.1')
assert LooseVersion(dask_kubernetes.__version__) >= LooseVersion('0.8')
assert LooseVersion(dask_labextension.__version__) == LooseVersion('0.3.1')
assert LooseVersion(tornado.version) == LooseVersion('6.0.3')
assert LooseVersion(dask_kubernetes.__version__) >= LooseVersion('0.9.0')
assert LooseVersion(dask_labextension.__version__) == LooseVersion('0.3.3')
3 changes: 2 additions & 1 deletion pangeo-notebook/binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ name: pangeo
channels:
- conda-forge
dependencies:
- python=3.6
- python=3.7
# core scipy packages
- numpy
- scipy
- matplotlib
- pandas
- xarray>=0.12.2
- dask>=2.0.0
# data science stuff
- scikit-image
- scikit-learn
Expand Down