Skip to content

Commit 812b33b

Browse files
committed
Fix: add todo extension
1 parent baac338 commit 812b33b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
# Get the latest Git tag - there might be a prettier way to do this but...
1717
try:
1818
release_value = (
19-
subprocess.check_output(["git", "describe", "--tags"]).decode("utf-8").strip()
19+
subprocess.check_output(["git", "describe", "--tags"])
20+
.decode("utf-8")
21+
.strip()
2022
)
2123
release_value = release_value[:4]
2224
except subprocess.CalledProcessError:
@@ -38,6 +40,7 @@
3840
"sphinx_sitemap",
3941
"sphinxext.opengraph",
4042
"sphinx_copybutton",
43+
"sphinx.ext.todo",
4144
]
4245

4346
# colon fence for card support in md

0 commit comments

Comments
 (0)