Skip to content

Commit 3f6d337

Browse files
committed
WIP
1 parent b7a59af commit 3f6d337

File tree

5 files changed

+28
-429
lines changed

5 files changed

+28
-429
lines changed

.readthedocs.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ version: 2
33
build:
44
image: latest
55

6-
sphinx:
7-
configuration: docs/conf.py
8-
fail_on_warning: true
9-
106
python:
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

docs/Makefile

Lines changed: 0 additions & 177 deletions
This file was deleted.

docs/conf.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,16 @@
1818

1919
autodoc_default_flags = ['members']
2020
autosummary_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'))

0 commit comments

Comments
 (0)