From f603d1dfd3c1ee7996bb385eb8f8ba43051b7d49 Mon Sep 17 00:00:00 2001 From: neontty Date: Sat, 6 Jun 2020 12:51:06 -0600 Subject: [PATCH] pip was silently updating latest packages. we weren't testing on minimum versions anyway --- .travis.yml | 2 -- ci_scripts/install.sh | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) 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