"vscode:/vscode.git/clone" did not exist on "074f6b364f7d35e70b3a7795b2618684d108f809"
Commit 8623a661 authored by mattip's avatar mattip
Browse files

add python 3.8.0rc1 to windows possibilities

parent f0bff09b
...@@ -80,3 +80,5 @@ test_script: ...@@ -80,3 +80,5 @@ test_script:
- ps: .\install_python.ps1 - ps: .\install_python.ps1
- set PYTHON=C:\Python37-x64 - set PYTHON=C:\Python37-x64
- ps: .\install_python.ps1 - ps: .\install_python.ps1
- set PYTHON=C:\Python38-x64
- ps: .\install_python.ps1
downloads/ downloads/
*.orig *.orig
*.swp
...@@ -21,7 +21,14 @@ if ($env:PYTHON -eq "C:\Python${req_nodot}-x64") { ...@@ -21,7 +21,14 @@ if ($env:PYTHON -eq "C:\Python${req_nodot}-x64") {
$py_url = "https://www.python.org/ftp/python" $py_url = "https://www.python.org/ftp/python"
Write-Host "Installing Python ${req_ver}$exe_suffix..." -ForegroundColor Cyan Write-Host "Installing Python ${req_ver}$exe_suffix..." -ForegroundColor Cyan
$exePath = "$env:TEMP\python-${req_ver}${exe_suffix}.exe" $exePath = "$env:TEMP\python-${req_ver}${exe_suffix}.exe"
$downloadFile = "$py_url/${req_ver}/python-${req_ver}${exe_suffix}.exe"
if ($req_nodot -eq "38") {
$downloadFile = "$py_url/${req_ver}/python-${req_ver}rc1${exe_suffix}.exe"
}
else {
$downloadFile = "$py_url/${req_ver}/python-${req_ver}${exe_suffix}.exe"
}
Write-Host "Downloading $downloadFile..." Write-Host "Downloading $downloadFile..."
(New-Object Net.WebClient).DownloadFile($downloadFile, $exePath) (New-Object Net.WebClient).DownloadFile($downloadFile, $exePath)
Write-Host "Installing..." Write-Host "Installing..."
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment