Skip to content

Commit

Permalink
Remove KERAS flag as repo's not meant for ==FALSE
Browse files Browse the repository at this point in the history
  • Loading branch information
OverLordGoldDragon committed Oct 16, 2019
1 parent 1530ae5 commit 131afb4
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ language: python
python:
- "3.6"
env:
global:
- KERAS="true"
matrix:
- KERAS="false"

# - KERAS_VERSION="2.2.5" TF_VERSION="1.13.1"
# - KERAS_VERSION="2.2.5" TF_VERSION="1.14.0"
- TF_VERSION="1.14.0"
Expand Down Expand Up @@ -41,17 +37,15 @@ before_install:

install:
- |
if [[ "$KERAS" == "true" ]]; then
if [[ -n "$KERAS_VERSION" ]]; then
pip install keras=="$KERAS_VERSION";
else
pip install keras;
fi
if [[ -n "$TF_VERSION" ]]; then
pip install tensorflow=="$TF_VERSION";
else
pip install tensorflow;
fi
if [[ -n "$KERAS_VERSION" ]]; then
pip install keras=="$KERAS_VERSION";
else
pip install keras;
fi
if [[ -n "$TF_VERSION" ]]; then
pip install tensorflow=="$TF_VERSION";
else
pip install tensorflow;
fi
script:
Expand Down

0 comments on commit 131afb4

Please sign in to comment.