diff --git a/.travis.yml b/.travis.yml index d17d3af4..121182da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,9 +14,7 @@ env: - MODULE=hdbscan matrix: - DISTRIB="conda" PYTHON_VERSION="3.7" - NUMPY_VERSION="1.15.3" SCIPY_VERSION="1.2.1" CYTHON_VERSION="0.28.5" - DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true" - NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.5" install: source ci_scripts/install.sh script: bash ci_scripts/test.sh diff --git a/ci_scripts/install.sh b/ci_scripts/install.sh index debc6828..99d99ac2 100644 --- a/ci_scripts/install.sh +++ b/ci_scripts/install.sh @@ -25,11 +25,10 @@ popd # Configure the conda environment and put it in the path using the # provided versions conda create -n testenv --yes python=$PYTHON_VERSION pip nose \ - numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION matplotlib pandas networkx + numpy scipy cython scikit-learn joblib matplotlib pandas networkx source activate testenv - if [[ "$COVERAGE" == "true" ]]; then pip install coverage coveralls fi