Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Update azure-pipelines.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jan 2, 2021
1 parent 4eee415 commit 01908cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions azure-pipelines.yml
Expand Up @@ -4,7 +4,7 @@ jobs:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python39:
Python39-Linux:
python.version: '3.9'
maxParallel: 3
steps:
Expand All @@ -27,7 +27,7 @@ jobs:
chmod +x llvm.sh
sudo ./llvm.sh 10
ls /usr/bin/llvm*
export LLVM_CONFIG=/usr/bin/llvm-config
export LLVM_CONFIG=/usr/bin/llvm-config-10
displayName: 'Install llvmlite'
- script: sudo apt-get install -y p7zip-full
displayName: 'Install 7z, rar'
Expand All @@ -36,7 +36,7 @@ jobs:
- script: python -m pip install --upgrade pip setuptools wheel numpy
displayName: 'Install tools'
- script: |
export LLVM_CONFIG=/usr/bin/llvm-config
export LLVM_CONFIG=/usr/bin/llvm-config-10
pip install -r requirements.txt
displayName: 'Install Requirements'
- script: python -u setup.py unittests
Expand All @@ -55,7 +55,7 @@ jobs:
vmImage: 'macOS-latest'
strategy:
matrix:
Python39:
Python39-MacOs:
python.version: "3.9"
steps:
- task: UsePythonVersion@0
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- bash: conda create --yes --quiet --name pyenv -c defaults -c conda-forge python=$PYTHON_VERSION tox sphinx jupyter Cython numpy mkl scipy scikit-learn pandas coverage pylint
displayName: Create Anaconda environment.
- bash: source activate pyenv
- script: conda install -p requirements.txt
- script: pip install -r requirements.txt
displayName: 'Install Requirements'
- script: export PYTHONPATH=src
displayName: 'PYTHONPATH=src'
Expand Down

0 comments on commit 01908cf

Please sign in to comment.