We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baac338 commit 812b33bCopy full SHA for 812b33b
conf.py
@@ -16,7 +16,9 @@
16
# Get the latest Git tag - there might be a prettier way to do this but...
17
try:
18
release_value = (
19
- subprocess.check_output(["git", "describe", "--tags"]).decode("utf-8").strip()
+ subprocess.check_output(["git", "describe", "--tags"])
20
+ .decode("utf-8")
21
+ .strip()
22
)
23
release_value = release_value[:4]
24
except subprocess.CalledProcessError:
@@ -38,6 +40,7 @@
38
40
"sphinx_sitemap",
39
41
"sphinxext.opengraph",
42
"sphinx_copybutton",
43
+ "sphinx.ext.todo",
44
]
45
46
# colon fence for card support in md
0 commit comments