Heinrich Schuchardt | f561498 | 2020-04-21 12:11:59 +0200 | [diff] [blame] | 1 | # .readthedocs.yml |
| 2 | # Read the Docs configuration file |
| 3 | # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details |
| 4 | |
| 5 | # Required |
| 6 | version: 2 |
| 7 | |
Heinrich Schuchardt | 8804b27 | 2022-01-12 02:35:00 +0100 | [diff] [blame] | 8 | build: |
| 9 | os: "ubuntu-20.04" |
| 10 | apt_packages: |
| 11 | - python3-six |
| 12 | tools: |
| 13 | python: "3.9" |
| 14 | |
Heinrich Schuchardt | f561498 | 2020-04-21 12:11:59 +0200 | [diff] [blame] | 15 | # Build documentation in the docs/ directory with Sphinx |
| 16 | sphinx: |
Heinrich Schuchardt | 14b7004 | 2020-05-01 22:06:17 +0200 | [diff] [blame] | 17 | configuration: doc/conf.py |
Heinrich Schuchardt | f561498 | 2020-04-21 12:11:59 +0200 | [diff] [blame] | 18 | |
| 19 | # Optionally build your docs in additional formats such as PDF and ePub |
| 20 | formats: [] |
| 21 | |
Heinrich Schuchardt | 8804b27 | 2022-01-12 02:35:00 +0100 | [diff] [blame] | 22 | python: |
| 23 | install: |
| 24 | - requirements: doc/sphinx/requirements.txt |