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', 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