From d6d658ea51f9f1401eb2fcf75bc520aab5aeea01 Mon Sep 17 00:00:00 2001 From: Kim-Adeline Miguel Date: Wed, 30 Oct 2019 11:28:57 -0700 Subject: [PATCH 1/2] Use Python 3.7.5 --- build/ci/templates/globals.yml | 2 +- build/ci/templates/jobs/uitest.yml | 2 +- news/2 Fixes/8296.md | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 news/2 Fixes/8296.md diff --git a/build/ci/templates/globals.yml b/build/ci/templates/globals.yml index b12fbcc4909b..0faae1292437 100644 --- a/build/ci/templates/globals.yml +++ b/build/ci/templates/globals.yml @@ -1,5 +1,5 @@ variables: - PythonVersion: '3.7.4' # Always use latest version. + PythonVersion: '3.7.5' # Always use latest version. NodeVersion: '10.11.0' # Check version of node used in VS Code. NpmVersion: '6.10.3' MOCHA_FILE: '$(Build.ArtifactStagingDirectory)/test-junit.xml' # All test files will write their JUnit xml output to this file, clobbering the last time it was written. diff --git a/build/ci/templates/jobs/uitest.yml b/build/ci/templates/jobs/uitest.yml index 1d03bddcfafb..e13ee26736eb 100644 --- a/build/ci/templates/jobs/uitest.yml +++ b/build/ci/templates/jobs/uitest.yml @@ -95,7 +95,7 @@ parameters: # All scenarios tagged with `@noNeedToTestInAllPython`, will run in the latest version of Python. # When using other versions of Python, ignore `@noNeedToTestInAllPython`. { - "version": "3.7.4", + "version": "3.7", "displayName": "37", "excludeTags": "not @python3.6 and not @python3.5 and not @python2" }, diff --git a/news/2 Fixes/8296.md b/news/2 Fixes/8296.md new file mode 100644 index 000000000000..3a3efed45c74 --- /dev/null +++ b/news/2 Fixes/8296.md @@ -0,0 +1 @@ +Fix CI to use Python 3.7.5. From 93667930261006272146b31fb8f71dab9d459644 Mon Sep 17 00:00:00 2001 From: Kim-Adeline Miguel Date: Wed, 30 Oct 2019 11:50:26 -0700 Subject: [PATCH 2/2] Don't specify minor version --- build/ci/templates/globals.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci/templates/globals.yml b/build/ci/templates/globals.yml index 0faae1292437..f3316f04d335 100644 --- a/build/ci/templates/globals.yml +++ b/build/ci/templates/globals.yml @@ -1,5 +1,5 @@ variables: - PythonVersion: '3.7.5' # Always use latest version. + PythonVersion: '3.7' # Always use latest version. NodeVersion: '10.11.0' # Check version of node used in VS Code. NpmVersion: '6.10.3' MOCHA_FILE: '$(Build.ArtifactStagingDirectory)/test-junit.xml' # All test files will write their JUnit xml output to this file, clobbering the last time it was written.