Skip to content

Commit fbfcf6d

Browse files
committed
updated docs year from 2024->2025
1 parent 41a51dd commit fbfcf6d

File tree

1 file changed

+17
-19
lines changed

1 file changed

+17
-19
lines changed

docs/conf.py

+17-19
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,34 @@
1010
# -- Project information -----------------------------------------------------
1111
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1212

13-
pyproject = toml.load('../pyproject.toml')
14-
project = pyproject['project']['name'].upper()
15-
copyright = '2024, 0x6fe1be2'
16-
author = pyproject['project']['authors'][0]['name']
17-
release = pyproject['project']['version']
13+
pyproject = toml.load("../pyproject.toml")
14+
project = pyproject["project"]["name"].upper()
15+
copyright = "2025, 0x6fe1be2"
16+
author = pyproject["project"]["authors"][0]["name"]
17+
release = pyproject["project"]["version"]
1818

1919
# -- General configuration ---------------------------------------------------
2020
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
2121

2222
extensions = [
23-
'sphinx.ext.autodoc',
24-
'sphinx.ext.autosummary',
25-
'sphinx.ext.napoleon',
26-
'sphinxcontrib.jquery',
27-
'autoapi.extension',
23+
"sphinx.ext.autodoc",
24+
"sphinx.ext.autosummary",
25+
"sphinx.ext.napoleon",
26+
"sphinxcontrib.jquery",
27+
"autoapi.extension",
2828
]
2929

30-
sys.path.insert(0, os.path.abspath('../src'))
31-
autoapi_dirs = ['../src/vagd']
32-
autoclass_content = 'both'
30+
sys.path.insert(0, os.path.abspath("../src"))
31+
autoapi_dirs = ["../src/vagd"]
32+
autoclass_content = "both"
3333

34-
templates_path = ['_templates']
35-
autoapi_ignore = exclude_patterns = ['*env*', '*__pycache__*', '*.egg-info' , '*vagd/gdb/*']
34+
templates_path = ["_templates"]
35+
autoapi_ignore = exclude_patterns = ["*env*", "*__pycache__*", "*.egg-info", "*vagd/gdb/*"]
3636
autoapi_add_toctree_entry = False
3737

3838

39-
4039
# -- Options for HTML output -------------------------------------------------
4140
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
4241

43-
html_theme = 'sphinx_rtd_theme'
44-
html_static_path = ['_static']
45-
42+
html_theme = "sphinx_rtd_theme"
43+
html_static_path = ["_static"]

0 commit comments

Comments
 (0)