Skip to content

Commit

Permalink
Fix x86 builds accidentally building as x64 instead
Browse files Browse the repository at this point in the history
  • Loading branch information
bsiegel committed Oct 9, 2020
1 parent 74bbabb commit 00d989f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .azure-pipelines/use-python-version.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
parameters:
versionSpec: ''
versionSpec: '3.x'
architecture: 'x64'

steps:
# use python 3.8 for tooling. packaging. platform.
Expand All @@ -22,4 +23,5 @@ steps:
- task: UsePythonVersion@0
displayName: "Use Python $(PythonVersion)"
inputs:
versionSpec: ${{ parameters.versionSpec }}
versionSpec: ${{ parameters.versionSpec }}
architecture: ${{ parameters.architecture }}

0 comments on commit 00d989f

Please sign in to comment.