Skip to content

Commit c3f1fe7

Browse files
committed
pip was silently updating latest packages. we weren't testing on minimum versions anyway
1 parent 63c1ea4 commit c3f1fe7

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ env:
1414
- MODULE=hdbscan
1515
matrix:
1616
- DISTRIB="conda" PYTHON_VERSION="3.7"
17-
NUMPY_VERSION="1.15.3" SCIPY_VERSION="1.2.1" CYTHON_VERSION="0.28.5"
1817
- DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true"
19-
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.5"
2018

2119
install: source ci_scripts/install.sh
2220
script: bash ci_scripts/test.sh

ci_scripts/install.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@ popd
2525
# Configure the conda environment and put it in the path using the
2626
# provided versions
2727
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
28-
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION matplotlib pandas networkx
28+
numpy scipy cython scikit-learn joblib matplotlib pandas networkx
2929

3030
source activate testenv
3131

32-
3332
if [[ "$COVERAGE" == "true" ]]; then
3433
pip install coverage coveralls
3534
fi

0 commit comments

Comments
 (0)