Skip to content

Commit cf8e3be

Browse files
committed
Deprecate python 2.7
Update miniconda versions Re-Add name
1 parent bb1fb61 commit cf8e3be

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

appveyor.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ build: false
22

33
environment:
44
matrix:
5-
- PYTHON_VERSION: 2.7
6-
MINICONDA: C:\Miniconda-x64
5+
- PYTHON_VERSION: 3.8
6+
MINICONDA: C:\Miniconda38-x64
7+
- PYTHON_VERSION: 3.7
8+
MINICONDA: C:\Miniconda37-x64
79

810
init:
911
- "ECHO %PYTHON_VERSION% %MINICONDA%"
@@ -13,15 +15,15 @@ install:
1315
- conda config --set always_yes yes --set changeps1 no
1416
- conda update -q conda
1517
- conda info -a
16-
- conda create --name lightfm numpy scipy scikit-learn
18+
- conda create --name lightfm -c conda-forge numpy scipy scikit-learn
1719
- activate lightfm
1820

1921
# Install the build dependencies of the project.
20-
- conda install --yes --file test-requirements.txt
22+
- conda install -c conda-forge --yes --file test-requirements.txt
2123

2224
# Install lightfm
2325
- pip install -e .
2426

2527
test_script:
2628
# Run the project tests
27-
- py.test tests/ -x
29+
- pytest tests/

0 commit comments

Comments
 (0)