"csrc/vscode:/vscode.git/clone" did not exist on "f0d34aabcb7bdcb3a05d022e7d11b3bf4ccf8ee8"
Commit 054e8c50 authored by Sergei Lebedev's avatar Sergei Lebedev
Browse files

Use latest Miniconda distribution on Appveyor

parent acd71c71
...@@ -7,10 +7,10 @@ $MINICONDA_URL = "http://repo.continuum.io/miniconda/" ...@@ -7,10 +7,10 @@ $MINICONDA_URL = "http://repo.continuum.io/miniconda/"
function DownloadMiniconda ($python_version, $platform_suffix) { function DownloadMiniconda ($python_version, $platform_suffix) {
$webclient = New-Object System.Net.WebClient $webclient = New-Object System.Net.WebClient
if ($python_version -match "3.4") { if ($python_version -gt "3") {
$filename = "Miniconda3-3.5.5-Windows-" + $platform_suffix + ".exe" $filename = "Miniconda3-latest-Windows-" + $platform_suffix + ".exe"
} else { } else {
$filename = "Miniconda-3.5.5-Windows-" + $platform_suffix + ".exe" $filename = "Miniconda-latest-Windows-" + $platform_suffix + ".exe"
} }
$url = $MINICONDA_URL + $filename $url = $MINICONDA_URL + $filename
......
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