Skip to content

Commit 87e1e13

Browse files
opt permission denied using tmp
1 parent e976007 commit 87e1e13

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.readthedocs.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.8"
7-
6+
python: "3.10"
7+
apt_packages:
8+
- default-jre-headless
9+
jobs:
10+
pre_install:
11+
- wget "https://github.com/plantuml/plantuml/releases/download/v1.2023.10/plantuml.jar" -O "/tmp/plantuml.jar"
12+
- echo "ee06454723028763dd8280459e8fd8f31fcd85b1ae8d9ab0e32122243c098c3b" "/tmp/plantuml.jar" | sha256sum -c
813
sphinx:
914
builder: html
1015
configuration: doc/htmldoc/conf.py
1116

1217
python:
13-
install:
14-
- requirements: doc/requirements.txt
18+
install:
19+
- requirements: doc/requirements.txt

doc/htmldoc/conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
# Add any paths that contain templates here, relative to this directory.
7171
templates_path = ["templates"]
7272

73+
plantuml = "java -jar /tmp/plantuml.jar"
7374
sphinx_gallery_conf = {
7475
# path to your examples scripts
7576
"examples_dirs": "../../pynest/examples",

0 commit comments

Comments
 (0)