File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,9 @@ before_install:
67
67
pip uninstall --yes mne;
68
68
fi;
69
69
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
70
- pip install --upgrade pyqt5>=5.10;
70
+ pip install --upgrade pyqt5>=5.10 pylsl;
71
+ else
72
+ conda install -c tstenner pylsl;
71
73
fi;
72
74
fi
73
75
# Don't source mne_setup_sh here because changing PATH etc. can't be done in a script
Original file line number Diff line number Diff line change 45
45
pip install --upgrade numpy scipy vtk
46
46
pip install --upgrade -r requirements.txt
47
47
pip install $env:PIP_DEPENDENCIES
48
+ pip install pylsl
48
49
condition: eq(variables['TEST_MODE'], 'pip')
49
50
displayName: 'Install dependencies with pip'
50
51
- powershell : |
56
57
powershell ci-helpers/appveyor/install-miniconda.ps1
57
58
$env:PATH = $env:PYTHON + "\envs\test;" + $env:PYTHON + "\envs\test\Scripts;" + $env:PYTHON + ";" + $env:PYTHON + "\Scripts;" + $env:PATH
58
59
pip uninstall -yq mne
60
+ pip install pylsl
59
61
Write-Host ("##vso[task.setvariable variable=PATH]" + $env:PATH)
60
62
condition: eq(variables['TEST_MODE'], 'conda')
61
63
displayName: 'Install dependencies with conda'
You can’t perform that action at this time.
0 commit comments