Skip to content

Commit 247a85e

Browse files
committed
FIX: Move
1 parent fdd15a5 commit 247a85e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tools/github_actions_dependencies.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
set -eo pipefail
44

55
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
6-
STD_ARGS="--progress-bar off --upgrade --only-binary=numpy,scipy,matplotlib,numba,llvmlite"
6+
ONLY_BINARY_ARG="--only-binary=numpy,scipy,matplotlib,numba,llvmlite"
7+
STD_ARGS="--progress-bar off --upgrade"
78
INSTALL_ARGS="-e"
89
if [ ! -z "$CONDA_ENV" ]; then
910
echo "Uninstalling MNE for CONDA_ENV=${CONDA_ENV}"
@@ -61,6 +62,6 @@ else
6162
echo "::group::Installing MNE in development mode using pip"
6263
fi
6364
set -x
64-
python -m pip install $STD_ARGS $INSTALL_ARGS .$EXTRAS $GROUP_ARG
65+
python -m pip install $STD_ARGS $ONLY_BINARY_ARG $INSTALL_ARGS .$EXTRAS $GROUP_ARG
6566
set +x
6667
echo "::endgroup::"

0 commit comments

Comments
 (0)