Skip to content

Commit

Permalink
Merge pull request #4148 from ccordoba12/use-older-miniconda3
Browse files Browse the repository at this point in the history
PR: Use an older Miniconda version for Python 3
  • Loading branch information
ccordoba12 authored Feb 15, 2017
2 parents a8e2699 + 91dbe82 commit b96e438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion continuous_integration/appveyor/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $MINICONDA_URL = "http://repo.continuum.io/miniconda/"
function DownloadMiniconda ($python_version, $platform_suffix) {
$webclient = New-Object System.Net.WebClient
if ($python_version -match "3.5") {
$filename = "Miniconda3-latest-Windows-" + $platform_suffix + ".exe"
$filename = "Miniconda3-4.2.12-Windows-" + $platform_suffix + ".exe"
} else {
$filename = "Miniconda2-latest-Windows-" + $platform_suffix + ".exe"
}
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ install_conda()
if [ "$PY_VERSION" = "2.7" ]; then
wget "http://repo.continuum.io/miniconda/Miniconda-$MINICONDA_VERSION-$MINICONDA_OS.sh" -O miniconda.sh;
else
wget "http://repo.continuum.io/miniconda/Miniconda3-$MINICONDA_VERSION-$MINICONDA_OS.sh" -O miniconda.sh;
wget "http://repo.continuum.io/miniconda/Miniconda3-4.2.12-$MINICONDA_OS.sh" -O miniconda.sh;
fi

bash miniconda.sh -b -p "$HOME/miniconda";
Expand Down

0 comments on commit b96e438

Please sign in to comment.