Skip to content

Commit

Permalink
Merge pull request #34 from the-virtual-brain/WID-178_final
Browse files Browse the repository at this point in the history
WID-178. Use higher version for ipywidgets to accommodate our widgets
  • Loading branch information
popaula937 authored Feb 3, 2023
2 parents f5ff56b + ac9e725 commit f663c1b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install scipy numpy tvb-library ebrains_drive ipywidgets==7.7.1
python -m pip install scipy numpy tvb-library ebrains_drive ipywidgets==7.7.2
python -m pip install pythreejs pyvista colorcet
python -m pip install ipympl mne
python -m pip install pytest pytest-cov pytest-mock tvb-data
Expand Down
2 changes: 1 addition & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ WORKDIR $USER_HOME
USER root
RUN conda update -n base -c defaults conda
RUN conda create -y --name tvb-widgets python=3.8 nomkl numba scipy numpy
RUN conda install -y --name tvb-widgets -c conda-forge jupyterlab tvb-library tvb-data ipywidgets==7.7.1
RUN conda install -y --name tvb-widgets -c conda-forge jupyterlab tvb-library tvb-data ipywidgets==7.7.2
RUN conda install -y --name tvb-widgets -c conda-forge pythreejs pyvista colorcet
RUN conda install -y --name tvb-widgets ipympl
RUN /opt/conda/envs/tvb-widgets/bin/pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions dev/prepare_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# Anaconda needs to be installed upfront
conda update -n base -c defaults conda
conda create -y --name tvb-widgets python=3.8 nomkl numba scipy numpy
conda install -y --name tvb-widgets -c conda-forge jupyterlab tvb-library tvb-data ipywidgets==7.7.1
conda install -y --name tvb-widgets -c conda-forge jupyterlab tvb-library tvb-data ipywidgets==7.7.2
conda install -y --name tvb-widgets -c conda-forge pythreejs pyvista colorcet
conda install -y --name tvb-widgets ipywidgets

pip install --upgrade pip
pip install ebrains_drive mne
pip install ebrains_drive mne==0.24.1

# Optionally install tvb-data from ZENODO to use demo data within it
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import shutil
from pathlib import Path

REQUIRED_PACKAGES = ["colorcet", "ebrains_drive", "ipympl>0.8.5", "ipywidgets==7.7.1", "mne>=1.0",
REQUIRED_PACKAGES = ["colorcet", "ebrains_drive", "ipympl>0.8.5", "ipywidgets==7.7.2", "mne>=1.0",
"pythreejs", "pyvista>=0.34.0", "tvb-library>=2.5"]

REQUIRED_EXTRA_EXAMPLES = ["tvb-data"]
Expand Down

0 comments on commit f663c1b

Please sign in to comment.