From 450d0163fc151e18fc38c56818a4622a84130f52 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Tue, 1 Jun 2021 12:13:22 +0300 Subject: [PATCH] Replace vincent with altair --- docs/using/selecting.md | 4 ++-- scipy-notebook/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/using/selecting.md b/docs/using/selecting.md index a06baef6..1f4ac157 100644 --- a/docs/using/selecting.md +++ b/docs/using/selecting.md @@ -95,7 +95,8 @@ and versioning strategy. `jupyter/scipy-notebook` includes popular packages from the scientific Python ecosystem. - Everything in `jupyter/minimal-notebook` and its ancestor images -- [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/), +- [altair](https://altair-viz.github.io), + [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/), [bokeh](https://docs.bokeh.org/en/latest/), [bottleneck](https://bottleneck.readthedocs.io/en/latest/), [cloudpickle](https://github.com/cloudpipe/cloudpickle), @@ -118,7 +119,6 @@ and versioning strategy. [sqlalchemy](https://www.sqlalchemy.org/), [statsmodel](https://www.statsmodels.org/stable/index.html), [sympy](https://www.sympy.org/en/index.html), - [vincent](https://vincent.readthedocs.io/en/latest/), [widgetsnbextension](https://ipywidgets.readthedocs.io/en/latest/user_install.html#installing-in-classic-jupyter-notebook), [xlrd](https://www.python-excel.org) packages diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index e29c8ffe..bf60f1e2 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -16,6 +16,7 @@ USER $NB_UID # Install Python 3 packages RUN conda install --quiet --yes \ + 'altair=4.1.*' \ 'beautifulsoup4=4.9.*' \ 'bokeh=2.3.*' \ 'bottleneck=1.3.*' \ @@ -41,7 +42,6 @@ RUN conda install --quiet --yes \ 'sqlalchemy=1.4.*' \ 'statsmodels=0.12.*' \ 'sympy=1.8.*' \ - 'vincent=0.4.*' \ 'widgetsnbextension=3.5.*'\ 'xlrd=2.0.*' && \ conda clean --all -f -y && \