Commit 5eca3cae authored by Min RK's avatar Min RK

stop removing qt

it makes the conda env invalid, which causes errors in later installs
parent 50ae9cde
...@@ -87,4 +87,4 @@ test/%: ## run tests against a stack ...@@ -87,4 +87,4 @@ test/%: ## run tests against a stack
@TEST_IMAGE="$(OWNER)/$(notdir $@)" pytest test @TEST_IMAGE="$(OWNER)/$(notdir $@)" pytest test
test/base-notebook: ## test supported options in the base notebook test/base-notebook: ## test supported options in the base notebook
@TEST_IMAGE="$(OWNER)/$(notdir $@)" pytest test base-notebook/test @TEST_IMAGE="$(OWNER)/$(notdir $@)" pytest test base-notebook/test
\ No newline at end of file
...@@ -15,8 +15,6 @@ RUN apt-get update && \ ...@@ -15,8 +15,6 @@ RUN apt-get update && \
USER $NB_UID USER $NB_UID
# Install Python 3 packages # Install Python 3 packages
# Remove pyqt and qt pulled in for matplotlib since we're only ever going to
# use notebook-friendly backends in these images
RUN conda install --quiet --yes \ RUN conda install --quiet --yes \
'conda-forge::blas=*=openblas' \ 'conda-forge::blas=*=openblas' \
'ipywidgets=7.4*' \ 'ipywidgets=7.4*' \
...@@ -43,7 +41,6 @@ RUN conda install --quiet --yes \ ...@@ -43,7 +41,6 @@ RUN conda install --quiet --yes \
'beautifulsoup4=4.7.*' \ 'beautifulsoup4=4.7.*' \
'protobuf=3.7.*' \ 'protobuf=3.7.*' \
'xlrd' && \ 'xlrd' && \
conda remove --quiet --yes --force qt pyqt && \
conda clean --all -f -y && \ conda clean --all -f -y && \
# Activate ipywidgets extension in the environment that runs the notebook server # Activate ipywidgets extension in the environment that runs the notebook server
jupyter nbextension enable --py widgetsnbextension --sys-prefix && \ jupyter nbextension enable --py widgetsnbextension --sys-prefix && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment