File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 16
16
- DISTRIB="conda" PYTHON_VERSION="3.7"
17
17
NUMPY_VERSION="1.15.3" SCIPY_VERSION="1.2.1" CYTHON_VERSION="0.28.5"
18
18
- DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true"
19
- NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.5" SCIKIT_LEARN_VERSION="0.22.2.post1"
19
+ NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.5"
20
20
21
21
install : source ci_scripts/install.sh
22
22
script : bash ci_scripts/test.sh
Original file line number Diff line number Diff line change 25
25
# Configure the conda environment and put it in the path using the
26
26
# provided versions
27
27
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=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION scikit-learn matplotlib pandas networkx
29
29
30
30
source activate testenv
31
31
32
- if [[ ! -z $SCIKIT_LEARN_VERSION ]]; then
33
- # can't install via conda due to a package conflict, but we have been
34
- # allowing pip to install to this env during our dependency process.
35
- pip install scikit-learn==$SCIKIT_LEARN_VERSION
36
- fi
37
-
38
32
if [[ " $COVERAGE " == " true" ]]; then
39
33
pip install coverage coveralls
40
34
fi
You can’t perform that action at this time.
0 commit comments