Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis-miniconda installer fix #19

Merged
merged 7 commits into from
Nov 16, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -4,9 +4,9 @@ virtualenv:
env:
matrix:
# let's start simple:
#- PYTHON_VERSION="2.7" LATEST="true"
- PYTHON_VERSION="3.4" LATEST="true"
#- PYTHON_VERSION="3.5" LATEST="true"
- PYTHON_VERSION="2.7" LATEST="true" "DEAP_VERSION=1.0.1"
- PYTHON_VERSION="3.4" LATEST="true" "DEAP_VERSION=1.0.1"
- PYTHON_VERSION="3.5" LATEST="true" "DEAP_VERSION=1.0.1"
#- PYTHON_VERSION="3.4" COVERAGE="true" LATEST="true"
install: source ./ci/.travis_install.sh
script: bash ./ci/.travis_test.sh
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/rhiever/tpot.svg?branch=master)](https://travis-ci.org/rhiever/tpot)

# Tree-based Pipeline Optimization Tool (TPOT)

Consider TPOT your **Data Science Assistant**. TPOT is a Python tool that automatically creates and optimizes Machine Learning pipelines using genetic programming.
8 changes: 4 additions & 4 deletions ci/.travis_install.sh
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ deactivate

# Use the miniconda installer for faster download / install of conda
# itself
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh \
wget http://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh \
-O miniconda.sh
chmod +x miniconda.sh && ./miniconda.sh -b
export PATH=/home/travis/miniconda/bin:$PATH
@@ -33,17 +33,17 @@ conda update --yes conda
# provided versions
if [[ "$LATEST" == "true" ]]; then
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
numpy scipy scikit-learn cython pandas deap
numpy scipy scikit-learn cython pandas
else
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION \
scikit-learn=$SKLEARN_VERSION \
pandas=$PANDAS_VERSION \
deap=$DEAP_VERSION \
pandas=$PANDAS_VERSION \
cython
fi

source activate testenv
pip install deap==$DEAP_VERSION

if [[ "$COVERAGE" == "true" ]]; then
pip install coverage coveralls