Skip to content

Commit 00d989f

Browse files
committed
Fix x86 builds accidentally building as x64 instead
1 parent 74bbabb commit 00d989f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.azure-pipelines/use-python-version.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
parameters:
2-
versionSpec: ''
2+
versionSpec: '3.x'
3+
architecture: 'x64'
34

45
steps:
56
# use python 3.8 for tooling. packaging. platform.
@@ -22,4 +23,5 @@ steps:
2223
- task: UsePythonVersion@0
2324
displayName: "Use Python $(PythonVersion)"
2425
inputs:
25-
versionSpec: ${{ parameters.versionSpec }}
26+
versionSpec: ${{ parameters.versionSpec }}
27+
architecture: ${{ parameters.architecture }}

0 commit comments

Comments
 (0)