diff --git a/.azure/ci-windows-job.yml b/.azure/ci-windows-job.yml index 479bf68f..6cc11e59 100644 --- a/.azure/ci-windows-job.yml +++ b/.azure/ci-windows-job.yml @@ -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'