We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16cdcb4 commit 12bdf8fCopy full SHA for 12bdf8f
docs/conf.py
@@ -17,7 +17,8 @@
17
# Read the version number from VERSION file
18
with open(version_file, 'r', encoding='UTF-8') as vf:
19
# The full version, including alpha/beta/rc tags
20
- release = vf.read().strip().split('.')
+ release_list = vf.read().strip().split('.')
21
+release = '.'.join(release_list)
22
23
# -- General configuration ---------------------------------------------------
24
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
0 commit comments