File tree Expand file tree Collapse file tree 5 files changed +28
-429
lines changed
Expand file tree Collapse file tree 5 files changed +28
-429
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,13 @@ version: 2
33build :
44 image : latest
55
6- sphinx :
7- configuration : docs/conf.py
8- fail_on_warning : true
9-
106python :
11- version : 3.6
12- install :
13- - method : pip
14- path : .
7+ version : 3.7
8+ install :
9+ - method : pip
10+ path : .
11+ - requirements : docs/requirements.txt
1512
16- conda :
17- environment : base_environment.yml
13+ sphinx :
14+ configuration : docs/conf.py
15+ fail_on_warning : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1818
1919autodoc_default_flags = ['members' ]
2020autosummary_generate = True
21+
22+ # Add source to python path.
23+ import sys , os
24+
25+ sys .path .append (os .path .abspath ('../src' ))
26+
27+ import subprocess ;
28+
29+ print ('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' )
30+ print ('!!! INVESTIGATE' )
31+ print ('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!' )
32+ subprocess .call ('ls -la' )
33+ print (os .path .abspath ('../src' ))
You can’t perform that action at this time.
0 commit comments