forked from divelab/DIG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (39 loc) · 1.28 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
language: shell
os:
- linux
vm:
size: x-large
branches:
only:
- dig
env:
jobs:
- TORCH_VERSION=1.8.0 PYTHON_VERSION=3.8 IDX=cpu
install:
- source script/conda.sh
- conda create --yes -n test python="${PYTHON_VERSION}"
- source activate test
- conda install pytorch==${TORCH_VERSION} ${TOOLKIT} -c pytorch -c conda-forge --yes
- conda install -c conda-forge rdkit --yes
- pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-${TORCH_VERSION}+${IDX}.html
- pip install torch-sparse -f https://pytorch-geometric.com/whl/torch-${TORCH_VERSION}+${IDX}.html
- pip install torch-cluster -f https://pytorch-geometric.com/whl/torch-${TORCH_VERSION}+${IDX}.html
- pip install torch-spline-conv -f https://pytorch-geometric.com/whl/torch-${TORCH_VERSION}+${IDX}.html
- pip install furo
- pip install numpy
- pip install sphinx==3.5.4
- pip install sphinx_rtd_theme==0.5.2
- pip install torch-geometric==1.7.0
- pip install git+https://github.com/Chilipp/autodocsumm.git
- pip install captum==0.2.0
- pip install cilog
- pip install typed-argument-parser==1.5.4
- pip install tensorboard
- pip install codecov
- python setup.py install
script:
- travis_wait 60 python setup.py test
after_success:
- codecov
notifications:
email: false