File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
common/pipelines/templates/steps Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,13 @@ steps:
90
90
ContainerRegistryClientId : $(azuresdkimages-cr-clientid)
91
91
ContainerRegistryClientSecret : $(azuresdkimages-cr-clientsecret)
92
92
ImageId : ' ${{ parameters.DocValidationImageId }}'
93
+ - task : UsePythonVersion@0
94
+ - script : |
95
+ python -m pip --version
96
+ displayName: Show Pip Version
97
+ - script : |
98
+ python -m pip install --upgrade pip
99
+ displayName: Update Pip Version
93
100
- pwsh : |
94
101
$packageInfoJson = '${{ convertToJson(parameters.PackageInfoLocations) }}'.Trim('"').Replace("\\", "/")
95
102
# Without -NoEnumerate, a single element array[T] gets unwrapped as a single item T.
Original file line number Diff line number Diff line change @@ -12,11 +12,6 @@ function Get-WhlFile {
12
12
}
13
13
$pipCommandArgs += " $Library ==$Version "
14
14
15
- # JRS-REMOVE-START
16
- pip -- version
17
- pip install -- upgrade pip
18
- # JRS-REMOVE-END
19
-
20
15
# download the whl file
21
16
Write-Host " pip download --quiet --only-binary :all: --dest $Destination --no-cache --no-deps $pipCommandArgs "
22
17
pip download -- quiet -- only- binary :all: -- dest $Destination -- no- cache -- no- deps $pipCommandArgs
You can’t perform that action at this time.
0 commit comments