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:
6767 pip uninstall --yes mne;
6868 fi;
6969 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;
7173 fi;
7274 fi
7375 # 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 4545 pip install --upgrade numpy scipy vtk
4646 pip install --upgrade -r requirements.txt
4747 pip install $env:PIP_DEPENDENCIES
48+ pip install pylsl
4849 condition: eq(variables['TEST_MODE'], 'pip')
4950 displayName: 'Install dependencies with pip'
5051 - powershell : |
5657 powershell ci-helpers/appveyor/install-miniconda.ps1
5758 $env:PATH = $env:PYTHON + "\envs\test;" + $env:PYTHON + "\envs\test\Scripts;" + $env:PYTHON + ";" + $env:PYTHON + "\Scripts;" + $env:PATH
5859 pip uninstall -yq mne
60+ pip install pylsl
5961 Write-Host ("##vso[task.setvariable variable=PATH]" + $env:PATH)
6062 condition: eq(variables['TEST_MODE'], 'conda')
6163 displayName: 'Install dependencies with conda'
You can’t perform that action at this time.
0 commit comments