File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
- sphinx >= 3 .0.1
1
+ sphinx >= 4 .0.0
2
2
sphinx_rtd_theme >= 0.4.3
3
3
exhale >= 0.2.3
4
4
sphinxcontrib-mermaid >= 0.4.0
Original file line number Diff line number Diff line change 6
6
sys .path .insert (0 , str (Path ('../../' ).resolve ()))
7
7
sys .path .insert (0 , str (Path ('../' ).resolve ()))
8
8
9
+ # TODO(#394): Remove this when this PR is merged:
10
+ # https://github.com/mgaitan/sphinxcontrib-mermaid/pull/71
11
+ # Needed for sphinxcontrib-mermaid compatibility with sphinx 4.0.0.
12
+ import sphinx
13
+ if sphinx .version_info [0 ] >= 4 :
14
+ import errno
15
+ import sphinx .util .osutil
16
+ sphinx .util .osutil .ENOENT = errno .ENOENT
17
+
9
18
from helper import generate_radar
10
19
# generate additional source stuff
11
20
generate_radar .generate (Path ("./auto-generated/" ))
You can’t perform that action at this time.
0 commit comments