.readthedocs.yml

Info

Parent directory

/

Last update

Modified — 2020-09-26 13:37:49 +0200

Last source

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# Configuration for readthedocs.org
# cf https://docs.readthedocs.io/en/stable/config-file/v2.html

version: 2

build:
  image: latest

python:
   version: 3.8
   install:
      - method: pip
        path: .
        extra_requirements:
           - docs

sphinx:
  builder: html
  configuration: docs/conf.py

Changes

build(python): Update minimal python version to 3.8

Commit
Hash

1dd172eed252bdfb4d76a277899dbd5043254a25

Date

2020-09-26 13:37:49 +0200

Type

Modified

Stats

+1 -1

@@ -7,7 +7,7 @@ build:
   image: latest

 python:
-   version: 3.7
+   version: 3.8
    install:
       - method: pip
         path: .

docs(rtd): Add configuration for readthedocs.org

Commit
Hash

0ba93b9a6dfe77e00190c1bbf9c3c8227bb3c601

Date

2019-06-03 13:55:00 +0200

Type

Added

Stats

+19 -0

@@ -0,0 +1,19 @@
+# Configuration for readthedocs.org
+# cf https://docs.readthedocs.io/en/stable/config-file/v2.html
+
+version: 2
+
+build:
+  image: latest
+
+python:
+   version: 3.7
+   install:
+      - method: pip
+        path: .
+        extra_requirements:
+           - docs
+
+sphinx:
+  builder: html
+  configuration: docs/conf.py