Skip to content

Commit f929b40

Browse files
committed
Update CI to test on Python 3.5 and 3.6
1 parent 2f7a399 commit f929b40

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ env:
55
matrix:
66
# let's start simple:
77
- 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"
108
- 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"
1111
install: source ./ci/.travis_install.sh
1212
script: bash ./ci/.travis_test.sh
1313
after_success:

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
include README.md LICENSE tests.py
1+
include README.md LICENSE tests.py tests.csv
22
recursive-include images *
33
recursive-include tpot *.py

ci/.travis_install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,5 @@ python -c "import deap; print('deap %s' % deap.__version__)"
6868
python -c "import xgboost; print('xgboost %s ' % xgboost.__version__)"
6969
python -c "import update_checker; print('update_checker %s' % update_checker.__version__)"
7070
python -c "import tqdm; print('tqdm %s' % tqdm.__version__)"
71+
python -c "import pathos; print('pathos %s' % pathos.__version__)"
7172
python setup.py build_ext --inplace

ci/.travis_test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ python -c "import deap; print('deap %s' % deap.__version__)"
1717
python -c "import xgboost; print('xgboost %s ' % xgboost.__version__)"
1818
python -c "import update_checker; print('update_checker %s ' % update_checker.__version__)"
1919
python -c "import tqdm; print('tqdm %s' % tqdm.__version__)"
20+
python -c "import pathos; print('pathos %s' % pathos.__version__)"
2021

2122
if [[ "$COVERAGE" == "true" ]]; then
2223
nosetests -s -v --with-coverage

0 commit comments

Comments
 (0)