forked from psteinb/n2v
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (28 loc) · 880 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# As a general rule, the latest release of Keras is compatible with the latest
# release of TensorFlow as well as the previous release of TensorFlow (in most
# cases, it is actually compatible with several prior TF releases, but that is
# not guaranteed).
#
# -- https://github.com/keras-team/keras/issues/10440#issuecomment-397428200
language: python
env:
- TENSORFLOW='tensorflow' KERAS='keras'
matrix:
include:
- os: linux
dist: bionic
python: 3.6
env: TENSORFLOW='tensorflow==1.14.0' KERAS='keras==2.2.5'
- os: linux
dist: bionic
python: 3.6
env: TENSORFLOW='tensorflow==1.12.0' KERAS='keras==2.2.5'
- os: linux
dist: bionic
python: 3.7
env: TENSORFLOW='tensorflow==1.14.0' KERAS='keras==2.2.5'
install:
- pip install $TENSORFLOW $KERAS
- pip install .
script:
- cd tests; pytest -v -s test*.py