stable/freqtrade/__init__.py
2020-01-31 20:17:41 +01:00

14 lines
371 B
Python

""" FreqTrade bot """
__version__ = '2019.11'
if __version__ == 'develop':
try:
import subprocess
__version__ = 'develop-' + subprocess.check_output(
['git', 'log', '--format="%h"', '-n 1'],
stderr=subprocess.DEVNULL).decode("utf-8").rstrip().strip('"')
except Exception:
# git not available, ignore
pass