Gabor Toth | 11192a2 | 2023-04-04 12:40:16 +0200 | [diff] [blame] | 1 | # .readthedocs.yaml |
| 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 | |
| 8 | # Set the version of tools you might need |
| 9 | build: |
| 10 | os: ubuntu-20.04 |
| 11 | tools: |
| 12 | python: "3.8" |
| 13 | apt_packages: |
| 14 | - plantuml |
Gyorgy Szing | a7273c9 | 2024-10-28 09:58:14 +0100 | [diff] [blame] | 15 | - wget |
| 16 | jobs: |
| 17 | post_install: |
| 18 | - wget https://github.com/plantuml/plantuml/releases/download/v1.2024.7/plantuml-1.2024.7.jar -O $HOME/plantuml.jar |
Gabor Toth | 11192a2 | 2023-04-04 12:40:16 +0200 | [diff] [blame] | 19 | |
| 20 | # Build documentation in the docs/ directory with Sphinx |
| 21 | sphinx: |
| 22 | configuration: docs/conf.py |
| 23 | |
| 24 | # Optionally declare the Python requirements required to build your docs |
| 25 | python: |
| 26 | install: |
Gyorgy Szing | a7273c9 | 2024-10-28 09:58:14 +0100 | [diff] [blame] | 27 | - requirements: docs/requirements.txt |