File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 5
5
matrix :
6
6
# let's start simple:
7
7
- PYTHON_VERSION="2.7" LATEST="true"
8
- - PYTHON_VERSION="3.4" LATEST="true"
9
- - PYTHON_VERSION="3.5" COVERAGE="true" LATEST="true" "DEAP_VERSION=1.0.1" "XGBOOST_VERSION=0.4a30"
10
8
- PYTHON_VERSION="3.5" LATEST="true"
9
+ - PYTHON_VERSION="3.6" COVERAGE="true" LATEST="true" "DEAP_VERSION=1.0.1" "XGBOOST_VERSION=0.4a30"
10
+ - PYTHON_VERSION="3.6" LATEST="true"
11
11
install : source ./ci/.travis_install.sh
12
12
script : bash ./ci/.travis_test.sh
13
13
after_success :
Original file line number Diff line number Diff line change 1
- include README.md LICENSE tests.py
1
+ include README.md LICENSE tests.py tests.csv
2
2
recursive-include images *
3
3
recursive-include tpot *.py
Original file line number Diff line number Diff line change @@ -68,4 +68,5 @@ python -c "import deap; print('deap %s' % deap.__version__)"
68
68
python -c " import xgboost; print('xgboost %s ' % xgboost.__version__)"
69
69
python -c " import update_checker; print('update_checker %s' % update_checker.__version__)"
70
70
python -c " import tqdm; print('tqdm %s' % tqdm.__version__)"
71
+ python -c " import pathos; print('pathos %s' % pathos.__version__)"
71
72
python setup.py build_ext --inplace
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ python -c "import deap; print('deap %s' % deap.__version__)"
17
17
python -c " import xgboost; print('xgboost %s ' % xgboost.__version__)"
18
18
python -c " import update_checker; print('update_checker %s ' % update_checker.__version__)"
19
19
python -c " import tqdm; print('tqdm %s' % tqdm.__version__)"
20
+ python -c " import pathos; print('pathos %s' % pathos.__version__)"
20
21
21
22
if [[ " $COVERAGE " == " true" ]]; then
22
23
nosetests -s -v --with-coverage
You can’t perform that action at this time.
0 commit comments