Commit d1bbe0ed authored by Matthew Brett's avatar Matthew Brett Committed by GitHub
Browse files

Merge pull request #21 from superbobry/patch-1

Use latest Miniconda distribution on Appveyor
parents acd71c71 054e8c50
...@@ -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