File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,14 @@ install:
2323 - " SET PATH=%PYTHON%;%PYTHON%\\ Scripts;%PYTHON%\\ Library\\ bin;%PATH%"
2424 # install the dependencies
2525 - conda update conda -y -q
26- - conda create -n testenv --yes python=%PYTHON_VERSION% pip
26+ - conda config --add channels conda-forge
27+ - conda update --all -y -q
28+ - conda install mamba -n base -y -q
29+ - mamba create -n testenv --yes python=%PYTHON_VERSION% pip
2730 - activate testenv
28- - conda install scipy==%SCIPY_VERSION% numpy==%NUMPY_VERSION% -y -q
29- - conda install scikit-learn==%SKLEARN_VERSION% -y -q
30- - conda install nose pytest pytest-cov -y -q
31+ - mamba install scipy==%SCIPY_VERSION% numpy==%NUMPY_VERSION% -y -q
32+ - mamba install scikit-learn==%SKLEARN_VERSION% -y -q
33+ - mamba install nose pytest pytest-cov -y -q
3134 - pip install codecov
3235 - pip install .
3336
You can’t perform that action at this time.
0 commit comments