From 6b9fdf612163346231eee1d7a330a6e83298d087 Mon Sep 17 00:00:00 2001 From: Emmanuelle Gouillart Date: Tue, 12 Nov 2019 11:53:39 -0500 Subject: [PATCH 1/3] updated plotly.py version --- python/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/getting-started.md b/python/getting-started.md index 23f5af615..9a3e05fd4 100644 --- a/python/getting-started.md +++ b/python/getting-started.md @@ -44,12 +44,12 @@ Thanks to deep integration with the [orca](https://github.com/plotly/orca) image plotly.py may be installed using pip... ``` -$ pip install plotly==4.2.1 +$ pip install plotly==4.3.0 ``` or conda. ``` -$ conda install -c plotly plotly=4.2.1 +$ conda install -c plotly plotly=4.3.0 ``` This package contains everything you need to write figures to standalone HTML files. From c8ef7aa3011d4e2f265ba3cebc4293ac536c7ad1 Mon Sep 17 00:00:00 2001 From: Emmanuelle Gouillart Date: Tue, 12 Nov 2019 13:08:32 -0500 Subject: [PATCH 2/3] update as well lab extension version --- python/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/getting-started.md b/python/getting-started.md index 9a3e05fd4..df22d8033 100644 --- a/python/getting-started.md +++ b/python/getting-started.md @@ -129,10 +129,10 @@ set NODE_OPTIONS=--max-old-space-size=4096 jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build # jupyterlab renderer support -jupyter labextension install jupyterlab-plotly@1.2.0 --no-build +jupyter labextension install jupyterlab-plotly@1.3.0 --no-build # FigureWidget support -jupyter labextension install plotlywidget@1.2.0 --no-build +jupyter labextension install plotlywidget@1.3.0 --no-build # Build extensions (must be done to activate extensions since --no-build is used above) jupyter lab build From 37570f63061021a6f39de7cf05d6ed9a3c71aa90 Mon Sep 17 00:00:00 2001 From: Nicolas Kruchten Date: Tue, 12 Nov 2019 13:37:29 -0500 Subject: [PATCH 3/3] more versions --- python/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/getting-started.md b/python/getting-started.md index df22d8033..013628056 100644 --- a/python/getting-started.md +++ b/python/getting-started.md @@ -107,13 +107,13 @@ For use in [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/), install t packages using pip... ``` -$ pip install jupyterlab==1.0 "ipywidgets>=7.5" +$ pip install jupyterlab==1.2 "ipywidgets>=7.5" ``` or conda. ``` -$ conda install jupyterlab=1.0 "ipywidgets>=7.5" +$ conda install jupyterlab=1.2 "ipywidgets>=7.5" ``` Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed): @@ -126,7 +126,7 @@ export NODE_OPTIONS=--max-old-space-size=4096 set NODE_OPTIONS=--max-old-space-size=4096 # Jupyter widgets extension -jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build +jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.1 --no-build # jupyterlab renderer support jupyter labextension install jupyterlab-plotly@1.3.0 --no-build