Skip to content

Use Python 3.7.5 in CI #8297

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 30, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/ci/templates/globals.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variables:
PythonVersion: '3.7.4' # Always use latest version.
PythonVersion: '3.7.5' # Always use latest version.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to specify the minor version?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe not? Let me try removing it and see if the pipeline fails

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.
Expand Down
2 changes: 1 addition & 1 deletion build/ci/templates/jobs/uitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
1 change: 1 addition & 0 deletions news/2 Fixes/8296.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix CI to use Python 3.7.5.