File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 7
7
8
8
python : # The following versions
9
9
- " 3.6"
10
+ - " 3.7"
10
11
# command to install dependencies
11
12
12
13
build :
@@ -22,11 +23,12 @@ install:
22
23
- pip install seaborn
23
24
- pip install pathlib
24
25
- pip install tensorflow_datasets
26
+ - pip install scikit-image
25
27
# 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
29
29
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;
30
32
fi
31
33
script :
32
34
# You can run all python files in parallel, http://stackoverflow.com/questions/5015316
You can’t perform that action at this time.
0 commit comments