First version of documentation for DME Participant
[nonrtric/plt/rappmanager.git] / .readthedocs.yaml
index cd2f8dc..69db9d3 100755 (executable)
 #  ============LICENSE_END=================================================
 #
 
----
+
 version: 2
 
 formats:
   - htmlzip
 
 build:
-  image: latest
-
+  os: ubuntu-22.04
+  tools:
+    python: "3.11"
+  jobs:
+    pre_build:
+      - mkdir --parents _readthedocs/html/
+      - mkdir --parents _readthedocs/tmp/doctrees
+      - sphinx-build -W -b html --keep-going -n -d
+        _readthedocs/tmp/doctrees  ./docs/ _readthedocs/html/
+      - sphinx-build -W -b html --keep-going -n -d
+        _readthedocs/tmp/doctrees/participants  ./participants/docs/
+        _readthedocs/html/participants
 python:
-  version: 3.7
   install:
     - requirements: docs/requirements-docs.txt
+    - requirements: participants/docs/requirements-docs.txt
 
 sphinx:
   configuration: docs/conf.py
+