Skip to content

Commit 495f01b

Browse files
committed
update
1 parent 7280ed2 commit 495f01b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ git:
77

88
python: # The following versions
99
- "3.6"
10+
- "3.7"
1011
# command to install dependencies
1112

1213
build:
@@ -22,11 +23,12 @@ install:
2223
- pip install seaborn
2324
- pip install pathlib
2425
- pip install tensorflow_datasets
26+
- pip install scikit-image
2527
# install TensorFlow from https://storage.googleapis.com/tensorflow/
26-
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.5" ]]; then
27-
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.3.0-cp35-cp35m-manylinux2010_x86_64.whl;
28-
elif [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
28+
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
2929
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.3.0-cp36-cp36m-manylinux2010_x86_64.whl;
30+
elif [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]]; then
31+
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.3.0-cp37-cp37m-manylinux2010_x86_64.whl;
3032
fi
3133
script:
3234
# You can run all python files in parallel, http://stackoverflow.com/questions/5015316

0 commit comments

Comments
 (0)