Skip to content

Commit e7757a0

Browse files
committed
TEST
1 parent dd99a1c commit e7757a0

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v5
2323
- run:
24-
pip install flake8 flake8-import-order sphinx rstcheck[sphinx] doc8
24+
pip install flake8 flake8-import-order sphinx sphinx_rtd_theme
25+
rstcheck[sphinx] doc8
2526
- run: pip install .
2627
- run: flake8 .
2728
- run: doc8 $(git ls-files '*.rst')

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.11"
6+
python: "3.12"
77
sphinx:
88
configuration: docs/conf.py

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# -- General configuration ------------------------------------------------
1313

1414
extensions = [
15+
'sphinx_rtd_theme',
1516
'sphinx.ext.autodoc',
1617
]
1718

@@ -29,7 +30,7 @@
2930

3031
# -- Options for HTML output ----------------------------------------------
3132

32-
html_theme = 'default'
33+
html_theme = 'sphinx_rtd_theme'
3334

3435
htmlhelp_basename = 'yamllintdoc'
3536

0 commit comments

Comments
 (0)