Skip to content

Commit

Permalink
Fix initial conda version at 4.0.5
Browse files Browse the repository at this point in the history
This should prevent missing `activate` in <conda_prefix>/bin when
downgrading to 3.19.3. This is what the conda people use in their CI
environment (
[see](https://github.com/conda/conda/blob/master/utils/travis-run-install.sh#L61)
and perhaps why that bug made it into the release in the first place).
  • Loading branch information
mvdbeek committed Oct 5, 2016
1 parent 8bf7256 commit 6d27a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/tools/deps/conda_util.py
Expand Up @@ -27,9 +27,9 @@

def conda_link():
if IS_OS_X:
url = "https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh"
url = "https://repo.continuum.io/miniconda/Miniconda2-4.0.5-MacOSX-x86_64.sh"
else:
url = "https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh"
url = "https://repo.continuum.io/miniconda/Miniconda2-4.0.5-Linux-x86_64.sh"
return url


Expand Down

0 comments on commit 6d27a3c

Please sign in to comment.