File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ install:
1919 - conda config --set always_yes yes --set changeps1 no
2020 - conda update -q conda
2121 - conda info -a
22- - conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy scikit-learn nose cython
22+ - conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy scikit-learn nose cython py-xgboost
2323 - activate test-environment
2424 - pip install deap tqdm update_checker pypiwin32
2525
Original file line number Diff line number Diff line change 55 matrix :
66 # let's start simple:
77 - PYTHON_VERSION="2.7" LATEST="true"
8- - PYTHON_VERSION="3.5" LATEST="true"
98 - PYTHON_VERSION="3.6" COVERAGE="true" LATEST="true"
109 - PYTHON_VERSION="3.6" LATEST="true"
1110install : source ./ci/.travis_install.sh
Original file line number Diff line number Diff line change @@ -33,22 +33,21 @@ conda update --yes conda
3333# provided versions
3434if [[ " $LATEST " == " true" ]]; then
3535 conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
36- numpy scipy scikit-learn cython
36+ numpy scipy scikit-learn cython py-xgboost
3737else
3838 conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
3939 numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION \
4040 scikit-learn=$SKLEARN_VERSION \
41- cython
41+ py-xgboost=$XGBOOST_VERSION \
42+ cython
4243fi
4344
4445source activate testenv
4546
4647if [[ " $LATEST " == " true" ]]; then
4748 pip install deap
48- pip install xgboost
4949else
5050 pip install deap==$DEAP_VERSION
51- pip install xgboost==$XGBOOST_VERSION
5251fi
5352
5453pip install update_checker
You can’t perform that action at this time.
0 commit comments