Skip to content

Commit 12bdf8f

Browse files
committed
docs/conf.py: fixed release
1 parent 16cdcb4 commit 12bdf8f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
# Read the version number from VERSION file
1818
with open(version_file, 'r', encoding='UTF-8') as vf:
1919
# The full version, including alpha/beta/rc tags
20-
release = vf.read().strip().split('.')
20+
release_list = vf.read().strip().split('.')
21+
release = '.'.join(release_list)
2122

2223
# -- General configuration ---------------------------------------------------
2324
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

0 commit comments

Comments
 (0)