From 6b994221c615dd928c43d923bd9a41d835b79a7c Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Wed, 16 Sep 2020 23:44:18 -0700 Subject: [PATCH] Remove Python 3.7 from build since homebrew removed it --- azure-pipelines.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3604ced3..f45d1075 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -149,12 +149,6 @@ stages: - job: "macOS_Mojave" pool: vmImage: "macos-10.14" - strategy: - matrix: - Python37: - python.version: "" - Python38: - python.version: "python@3.8" steps: # https://github.com/actions/virtual-environments/issues/664 # - task: UsePythonVersion@0 @@ -163,11 +157,8 @@ stages: - bash: | brew update brew unlink python@2 - if [ "$(python.version)" != "" ]; then - brew upgrade $(python.version) - else - echo "Using Python `python3 --version`" - fi + brew upgrade python + echo "Using Python `python3 --version`" displayName: "Update brew and Python" - bash: | brew install \