Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ jobs:
- job:
displayName: linux
pool:
vmImage: 'ubuntu-16.04'
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python37:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
- job:
displayName: osx
pool:
vmImage: 'macOS-10.14'
vmImage: 'macOS-latest'
strategy:
matrix:
Python37:
Expand All @@ -130,6 +130,9 @@ jobs:
- bash: echo "##vso[task.prependpath]$CONDA/bin"
displayName: Add conda to PATH

- bash: sudo chown -R 501:20 /usr/local/miniconda/pkgs
displayName: Fix permissions

- bash: |
conda config --add channels conda-forge
conda config --set channel_priority strict
Expand Down