From b5e38c6ad8b6b3ee24cd0f292342b4d8e2b6a1fb Mon Sep 17 00:00:00 2001 From: Keith Battocchi Date: Wed, 29 Apr 2020 13:46:17 -0400 Subject: [PATCH] Enable Python 3.8 support --- azure-pipelines-steps.yml | 2 +- azure-pipelines.yml | 9 +++++++++ setup.cfg | 1 + 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/azure-pipelines-steps.yml b/azure-pipelines-steps.yml index 448484735..24e3d9807 100644 --- a/azure-pipelines-steps.yml +++ b/azure-pipelines-steps.yml @@ -24,7 +24,7 @@ steps: condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux')) # Install the package -- script: 'python -m pip install --upgrade pip && pip install --upgrade setuptools && pip install ${{ parameters.package }}' +- script: 'python -m pip install --upgrade pip && pip install --upgrade setuptools wheel && pip install ${{ parameters.package }}' displayName: 'Install dependencies' - ${{ parameters.body }} diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 17c056584..b233b45ec 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -185,6 +185,15 @@ jobs: Windows, Python 3.7: imageName: 'vs2017-win2016' python.version: '3.7' + Linux, Python 3.8: + imageName: 'ubuntu-16.04' + python.version: '3.8' + macOS, Python 3.8: + imageName: 'macOS-10.15' + python.version: '3.8' + Windows, Python 3.8: + imageName: 'vs2017-win2016' + python.version: '3.8' pool: vmImage: $(imageName) diff --git a/setup.cfg b/setup.cfg index 689e6ce41..0375c10e9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,6 +27,7 @@ classifiers = Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 License :: OSI Approved :: MIT License Operating System :: OS Independent