doc: handle release definition when not being in a git repository
This commit is contained in:
parent
aba6f98cd9
commit
9fe403e3c7
@ -74,7 +74,10 @@ author = 'Invisible Things Lab'
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = open('../version').read().strip()
|
version = open('../version').read().strip()
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = subprocess.check_output(['git', 'describe', '--long', '--dirty']).strip().decode()
|
try:
|
||||||
|
release = subprocess.check_output(['git', 'describe', '--long', '--dirty']).strip().decode()
|
||||||
|
except:
|
||||||
|
release = "1"
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
Loading…
Reference in New Issue
Block a user