Skip to content

Commit d407ada

Browse files
committed
try to build graphviz 13.x again
1 parent 9bce60f commit d407ada

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.readthedocs.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@ build:
77
tools:
88
python: "3.10"
99
apt_packages:
10-
- graphviz
10+
- build-essential
11+
- libsodium-dev
12+
- libargon2-dev
13+
jobs:
14+
pre_create_environment:
15+
- wget https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/13.1.0/graphviz-13.1.0.tar.gz
16+
- tar xzf graphviz-13.1.0.tar.gz
17+
- cd ./graphviz-13.1.0 && ./configure -prefix=$HOME/.graphviz --disable-perl --disable-python --disable-go --disable-java --disable-lua --disable-tcl && make install
1118

1219
sphinx:
1320
configuration: docs/conf.py

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@
107107
todo_include_todos = True
108108

109109
graphviz_output_format = "svg"
110+
graphviz_dot = os.path.expanduser("~/.graphviz/bin/dot")
110111

111112
inheritance_graph_attrs = {
112113
"rankdir": "LR",

docs/static/custom.css

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
/* See https://github.com/OpenCyphal/pycyphal/issues/321 */
2-
object.inheritance, img.inheritance {
3-
max-width: 25%;
4-
width: 25%;
5-
height: auto;
6-
display: block;
7-
margin: auto;
8-
}
9-
101
/* Gray text is ugly. Text should be black. */
112
body {
123
color: #000;

0 commit comments

Comments
 (0)