File tree 3 files changed +13
-14
lines changed
3 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 53
53
pip install coveralls
54
54
- name : Test with pytest
55
55
run : |
56
- coverage run --source=e3nn -m pytest --doctest-modules --ignore=docs/ .
56
+ coverage run --source=e3nn -m pytest --doctest-modules --ignore=docs/ --ignore-glob='**/experimental*' tests examples
57
57
- name : Upload to coveralls
58
58
env :
59
59
COVERALLS_TOKEN : ${{ secrets.COVERALLS_TOKEN }}
Original file line number Diff line number Diff line change 5
5
# Required
6
6
version : 2
7
7
8
- # added following nbsphinx instructions
9
- formats : all
8
+ # Set the version of Python and other tools you might need
9
+ build :
10
+ os : ubuntu-22.04
11
+ tools :
12
+ python : " 3.11"
10
13
11
14
# Build documentation in the docs/ directory with Sphinx
12
15
sphinx :
13
- configuration : docs/conf.py
16
+ configuration : docs/conf.py
14
17
15
- # Build documentation with MkDocs
16
- # mkdocs:
17
- # configuration: mkdocs.yml
18
-
19
- # Optionally set the version of Python and requirements required to build your docs
18
+ # Optionally declare the Python requirements required to build your docs
20
19
python :
21
- version : 3.8
22
- install :
23
- - requirements : docs/requirements.txt
24
- system_packages : true # added following nbsphinx instructions
20
+ install :
21
+ - requirements : docs/requirements.txt
22
+ - method : pip
23
+ path : .
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ jupyter-sphinx
10
10
ase
11
11
12
12
--find-links https://download.pytorch.org/whl/cpu
13
- torch == 2.0.0
13
+ torch == 2.*
14
14
15
15
--find-links https://data.pyg.org/whl/torch-2.0.0+cpu.html
16
16
torch-scatter
You can’t perform that action at this time.
0 commit comments