-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
322cf54
commit 342e72b
Showing
2 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
#!/bin/bash | ||
#!/bin/sh | ||
# Copyright (C) 2014, 2015 Robert Jordens <jordens@gmail.com> | ||
|
||
export PATH=$HOME/miniconda/bin:$PATH | ||
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh | ||
bash miniconda.sh -b -p $HOME/miniconda | ||
hash -r | ||
conda config --set always_yes yes --set changeps1 no | ||
conda create -q -n py35 python=$TRAVIS_PYTHON_VERSION | ||
source $HOME/miniconda/bin/activate py35 | ||
conda update -q conda | ||
conda info -a | ||
conda install conda-build jinja2 | ||
conda create -q -n py35 python=$TRAVIS_PYTHON_VERSION | ||
conda config --add channels https://conda.anaconda.org/m-labs/channel/dev |