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

set travis ci w/ sklearn 0.22.2 for python3.5 case #387

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions ci_scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down