Skip to content

Commit 9c63cce

Browse files
authored
fix(): Remove VC for Python 2.7 download (#19)
VCForPython27 is no longer available. It appears the necessary python packages for testwebkitpy do install without it per build at ~https://build.webkit.org/#/builders/60/builds/1099/steps/12/logs/stdio
1 parent b76bbae commit 9c63cce

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

WebKitDev/Functions/Install-Python.ps1

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,4 @@ Function Install-Python {
7777

7878
python get-pip.py $pipInstall;
7979
Remove-Item get-pip.py -Force;
80-
81-
if ($major -eq '2') {
82-
# Install Visual Studio for Python 2.7
83-
$vcForPythonUrl = 'https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi';
84-
85-
Install-FromMsi -Name 'VCForPython27' -Url $vcForPythonUrl -NoVerify;
86-
}
8780
}

0 commit comments

Comments
 (0)