Skip to content
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
5 changes: 2 additions & 3 deletions tools/azure_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ if [ "${TEST_MODE}" == "pip" ]; then
python -m pip install --upgrade --only-binary="numba,llvmlite" -r requirements.txt
elif [ "${TEST_MODE}" == "pip-pre" ]; then
python -m pip install --progress-bar off --upgrade pip setuptools
python -m pip install --progress-bar off --upgrade --pre --only-binary ":all:" -i "https://pypi.anaconda.org/scipy-wheels-nightly/simple" --extra-index-url https://www.riverbankcomputing.com/pypi/simple numpy scipy pandas scikit-learn PyQt5
python -m pip install --progress-bar off --upgrade --pre --only-binary ":all:" -f "https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com" h5py Pillow
python -m pip install --progress-bar off --upgrade --pre --only-binary ":all:" -i "https://pypi.anaconda.org/scipy-wheels-nightly/simple" --extra-index-url https://www.riverbankcomputing.com/pypi/simple numpy scipy pandas scikit-learn PyQt5 dipy statsmodels
python -m pip install --progress-bar off --upgrade --pre --only-binary ":all:" -f "https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com" h5py Pillow matplotlib
python -m pip install --progress-bar off --upgrade --pre --only-binary ":all" vtk
python -m pip install --progress-bar off --upgrade --only-binary ":all" matplotlib
python -m pip install --progress-bar off https://github.com/pyvista/pyvista/zipball/master
python -m pip install --progress-bar off https://github.com/pyvista/pyvistaqt/zipball/master
python -m pip install --progress-bar off --upgrade --only-binary="numba,llvmlite" -r requirements.txt
Expand Down
7 changes: 4 additions & 3 deletions tools/github_actions_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@ if [ ! -z "$CONDA_ENV" ]; then
pip uninstall -yq mne
elif [ ! -z "$CONDA_DEPENDENCIES" ]; then
conda install -y $CONDA_DEPENDENCIES
else # pip --pre 3.9 (missing dipy in pre)
else
# Changes here should also go in the interactive_test CircleCI job
python -m pip install --progress-bar off --upgrade "pip!=20.3.0" setuptools wheel
pip uninstall -yq numpy
pip install --progress-bar off --upgrade --pre --only-binary ":all:" python-dateutil pytz joblib threadpoolctl
pip install --progress-bar off --upgrade --pre --only-binary ":all:" -i "https://pypi.anaconda.org/scipy-wheels-nightly/simple" --extra-index-url https://www.riverbankcomputing.com/pypi/simple numpy scipy pandas scikit-learn PyQt5
pip install --progress-bar off --upgrade --pre --only-binary ":all:" -i "https://pypi.anaconda.org/scipy-wheels-nightly/simple" --extra-index-url https://www.riverbankcomputing.com/pypi/simple numpy scipy pandas scikit-learn PyQt5 dipy statsmodels
pip install --progress-bar off --upgrade --pre --only-binary ":all:" -f "https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com" h5py pillow matplotlib
pip install --progress-bar off --upgrade --pre --only-binary ":all:" numba llvmlite
pip install --progress-bar off --upgrade --pre --only-binary ":all:" numba llvmlite nilearn
# built using vtk master branch on an Ubuntu 18.04.5 VM and uploaded to OSF:
wget -q https://osf.io/kej3v/download -O vtk-9.0.20201117-cp39-cp39-linux_x86_64.whl
pip install --progress-bar off vtk-9.0.20201117-cp39-cp39-linux_x86_64.whl
pip install --progress-bar off https://github.com/pyvista/pyvista/zipball/master
pip install --progress-bar off https://github.com/pyvista/pyvistaqt/zipball/master
pip install --progress-bar off --pre mayavi imageio-ffmpeg xlrd mffpy
fi
pip install --progress-bar off --upgrade -r requirements_testing.txt
if [ "${DEPS}" != "minimal" ]; then
Expand Down