File tree 3 files changed +32
-9
lines changed 3 files changed +32
-9
lines changed Original file line number Diff line number Diff line change
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 Python and other tools you might need
9
+ build :
10
+ os : ubuntu-22.04
11
+ tools :
12
+ python : " 3.10"
13
+
14
+ # Build documentation in the docs/ directory with Sphinx
15
+ sphinx :
16
+ configuration : docs/conf.py
17
+
18
+ # If using Sphinx, optionally build your docs in additional formats such as PDF
19
+ # formats:
20
+ # - pdf
21
+
22
+ # Optionally declare the Python requirements required to build your docs
23
+ python :
24
+ install :
25
+ - requirements : docs/requirements.txt
Original file line number Diff line number Diff line change 15
15
# sys.path.insert(0, os.path.abspath('.'))
16
16
17
17
from __future__ import unicode_literals
18
- import re
19
18
20
- from recommonmark .parser import CommonMarkParser
21
19
from recommonmark .transform import AutoStructify
22
20
from docutils import nodes , transforms
23
21
24
22
# -- Project information -----------------------------------------------------
25
23
26
24
project = 'Turbinia'
27
- copyright = '2022 , Google Inc'
25
+ copyright = '2023 , Google Inc'
28
26
author = 'Turbinia maintainers'
29
27
30
28
# -- General configuration ---------------------------------------------------
81
79
# Output file base name for HTML help builder.
82
80
htmlhelp_basename = 'turbiniadoc'
83
81
84
- html_logo = " images/turbinia-logo.jpg"
82
+ html_logo = ' images/turbinia-logo.jpg'
85
83
86
84
87
85
class ProcessLink (transforms .Transform ):
Original file line number Diff line number Diff line change 1
- docutils
2
- pyparsing
3
- recommonmark
4
- sphinx
5
- sphinx_rtd_theme
1
+ docutils == 0.17.1
2
+ pyparsing == 2.4.7
3
+ recommonmark == 0.7.1
4
+ sphinx == 5.3.0
5
+ sphinx_rtd_theme == 1.1.1
You can’t perform that action at this time.
0 commit comments