25 lines
600 B
Python
25 lines
600 B
Python
from __future__ import unicode_literals
|
|
|
|
from subprocess import PIPE, Popen
|
|
|
|
from mopidy import __version__
|
|
|
|
|
|
def get_version():
|
|
try:
|
|
return get_git_version()
|
|
except EnvironmentError:
|
|
return __version__
|
|
|
|
|
|
def get_git_version():
|
|
process = Popen(['git', 'describe'], stdout=PIPE, stderr=PIPE)
|
|
# pylint: disable = E1101
|
|
if process.wait() != 0:
|
|
raise EnvironmentError('Execution of "git describe" failed')
|
|
version = process.stdout.read().strip()
|
|
# pylint: enable = E1101
|
|
if version.startswith('v'):
|
|
version = version[1:]
|
|
return version
|