We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d3b8d7 commit 721f2cdCopy full SHA for 721f2cd
setup_pip.ps1
@@ -2,7 +2,7 @@ $Version = $env:PYTHON_VERSION
2
$PythonPath = $env:SETUP_PYTHON_PATH
3
$Semver = $Version.Split('.')
4
Write-Output "Setting up pip for python $Version in path $PythonPath"
5
-if ([int]$Semver[0] -eq 3 -and [int]$Semver[1] -lt 5) {
+if (!($Semver[0] -like 'pypy*') -and ([int]$Semver[0] -eq 3 -and [int]$Semver[1] -lt 5)) {
6
if ([int]$Semver[1] -gt 2) {
7
Write-Output "Using get_pip.py..."
8
$VersionNumber = $Semver[0]
0 commit comments