Add Python 3.8 builds, the Azure agent doesn't have 3.9 yet.

This commit is contained in:
Robin Dunn
2020-10-09 11:37:02 -07:00
parent 2dd41a851c
commit d17e0948f3

View File

@@ -15,6 +15,15 @@ jobs:
python.version: '3.7'
python.arch: x86
addToPath: true
Py38_x86:
python.version: '3.8'
python.arch: x86
addToPath: true
# Py39_x86:
# python.version: '3.9'
# python.arch: x86
# addToPath: true
Py36_x64:
python.version: '3.6'
python.arch: x64
@@ -23,17 +32,16 @@ jobs:
python.version: '3.7'
python.arch: x64
addToPath: true
Py38_x64:
python.version: '3.8'
python.arch: x64
addToPath: true
# Py39_x64:
# python.version: '3.9'
# python.arch: x64
# addToPath: true
maxParallel: 4
# Py38_x86:
# python.version: '3.8'
# python.arch: x86
# addToPath: true
# Py38_x64:
# python.version: '3.8'
# python.arch: x64
# addToPath: true
variables: {'PYTHONUNBUFFERED': '1'}
@@ -56,7 +64,7 @@ jobs:
- bash: |
curl -O https://bootstrap.pypa.io/get-pip.py
python get-pip.py
python -m pip install -U "setuptools<45" wheel
python -m pip install -U setuptools wheel
python -m pip install -r requirements.txt
displayName: 'Install Python dependencies'