Skip to content

Commit 2e73110

Browse files
committed
appveyor: add conda-forge channel and use mamba
1 parent 8eb57b2 commit 2e73110

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

appveyor.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)