We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 568e164 commit 4a29d0fCopy full SHA for 4a29d0f
.readthedocs.yml
@@ -3,12 +3,14 @@ build:
3
os: ubuntu-22.04
4
tools:
5
python: "3.13"
6
-
7
- # Java is required for PlantUML to generate C4 diagrams
8
- apt_packages:
9
- - plantuml
10
- - openjdk-17-jdk
11
- - graphviz
+ jobs:
+ post_install:
+ # Download the latest PlantUML jar
+ - wget https://github.com/plantuml/plantuml/releases/latest/download/plantuml.jar -P /tmp/
+ # Create an executable wrapper script for Sphinx
+ - echo '#!/bin/sh' > /usr/local/bin/plantuml
12
+ - echo 'java -jar /tmp/plantuml.jar "$@"' >> /usr/local/bin/plantuml
13
+ - chmod +x /usr/local/bin/plantuml
14
15
sphinx:
16
configuration: doc/conf.py
0 commit comments