Skip to content

Commit

Permalink
Merge pull request #51 from Eric89GXL/trav
Browse files Browse the repository at this point in the history
FIX: Update Travis
  • Loading branch information
larsoner committed May 17, 2015
2 parents f1ac751 + cf82f2f commit 57c8038
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:

before_install:
- if [ "${PYTHON}" != "2.7" ]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.6.0-Linux-x86_64.sh -O miniconda.sh;
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
chmod +x miniconda.sh;
./miniconda.sh -b -p ~/anaconda;
export PATH=~/anaconda/bin:$PATH;
Expand Down
4 changes: 2 additions & 2 deletions make/install_python.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ $BASE_URL = "https://www.python.org/ftp/python/"
function DownloadMiniconda ($python_version, $platform_suffix) {
$webclient = New-Object System.Net.WebClient
if ($python_version -eq "3.4") {
$filename = "Miniconda3-3.5.5-Windows-" + $platform_suffix + ".exe"
$filename = "Miniconda3-latest-Windows-" + $platform_suffix + ".exe"
} else {
$filename = "Miniconda-3.5.5-Windows-" + $platform_suffix + ".exe"
$filename = "Miniconda-latest-Windows-" + $platform_suffix + ".exe"
}
$url = $MINICONDA_URL + $filename

Expand Down

0 comments on commit 57c8038

Please sign in to comment.