Skip to content

Commit

Permalink
Deprecate python 2.7
Browse files Browse the repository at this point in the history
Update miniconda versions


Re-Add name
  • Loading branch information
SimonCW committed Mar 3, 2022
1 parent bb1fb61 commit cf8e3be
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ build: false

environment:
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda-x64
- PYTHON_VERSION: 3.8
MINICONDA: C:\Miniconda38-x64
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda37-x64

init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
Expand All @@ -13,15 +15,15 @@ install:
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda create --name lightfm numpy scipy scikit-learn
- conda create --name lightfm -c conda-forge numpy scipy scikit-learn
- activate lightfm

# Install the build dependencies of the project.
- conda install --yes --file test-requirements.txt
- conda install -c conda-forge --yes --file test-requirements.txt

# Install lightfm
- pip install -e .

test_script:
# Run the project tests
- py.test tests/ -x
- pytest tests/

0 comments on commit cf8e3be

Please sign in to comment.