Remove Python 3.7 from build since homebrew removed it

This commit is contained in:
James R. Barlow
2020-09-16 23:44:18 -07:00
parent 8b5b02e0d8
commit 6b994221c6
+2 -11
View File
@@ -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 \