From a09a6d518d66fd1c982ddacbbd2739ed1b05a8ee Mon Sep 17 00:00:00 2001 From: Devaraj Ranganna Date: Mon, 12 Oct 2020 17:03:45 +0100 Subject: [PATCH 1/2] ci: add support for python 3.8 --- azure-pipelines.yml | 12 ++++++++++++ setup.py | 1 + 2 files changed, 13 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2224e1fcd9..dd00d0a485 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -34,6 +34,10 @@ jobs: linux_python_3_7: python.version: "3.7" imageName: ubuntu-16.04 + sendCoverage: "false" + linux_python_3_8: + python.version: "3.8" + imageName: ubuntu-16.04 sendCoverage: "true" mac_python_2_7: python.version: "2.7" @@ -51,6 +55,10 @@ jobs: python.version: "3.7" imageName: macOS-10.15 sendCoverage: "false" + mac_python_3_8: + python.version: "3.8" + imageName: macOS-10.15 + sendCoverage: "false" windows_python_2_7: python.version: "2.7" imageName: vs2017-win2016 @@ -67,6 +75,10 @@ jobs: python.version: "3.7" imageName: vs2017-win2016 sendCoverage: "false" + windows_python_3_8: + python.version: "3.8" + imageName: vs2017-win2016 + sendCoverage: "false" maxParallel: 10 pool: vmImage: $(imageName) diff --git a/setup.py b/setup.py index 894bef93aa..2ef4571799 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,7 @@ def read(fname): 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python', 'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Embedded Systems', From b8adb248a2ff71784704f6d3cbdb2487906b2610 Mon Sep 17 00:00:00 2001 From: Devaraj Ranganna Date: Mon, 12 Oct 2020 16:34:45 +0100 Subject: [PATCH 2/2] ci: Add missing package `wheel` The missing package `wheel` is added to `test_requirements.txt`. Signed-off-by: Devaraj Ranganna --- test_requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test_requirements.txt b/test_requirements.txt index 8b7129c1ca..16122f6afa 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -2,3 +2,4 @@ coverage>=4,<5 coveralls>=1,<2 mock>=2,<4 pytest>=3,<5 +wheel>=0.34