stable/freqtrade/__init__.py

23 lines
814 B
Python
Raw Normal View History

2020-02-17 19:16:24 +00:00
""" Freqtrade bot """
2023-01-30 06:19:35 +00:00
__version__ = '2023.2.dev'
2019-08-28 05:05:48 +00:00
if 'dev' in __version__:
from pathlib import Path
2019-08-28 05:05:48 +00:00
try:
import subprocess
freqtrade_basedir = Path(__file__).parent
2020-02-17 19:17:08 +00:00
__version__ = __version__ + '-' + subprocess.check_output(
2020-02-17 19:17:36 +00:00
['git', 'log', '--format="%h"', '-n 1'],
stderr=subprocess.DEVNULL, cwd=freqtrade_basedir).decode("utf-8").rstrip().strip('"')
2020-02-17 19:17:08 +00:00
except Exception: # pragma: no cover
2019-08-28 05:05:48 +00:00
# git not available, ignore
try:
# Try Fallback to freqtrade_commit file (created by CI while building docker image)
versionfile = Path('./freqtrade_commit')
if versionfile.is_file():
__version__ = f"docker-{__version__}-{versionfile.read_text()[:8]}"
except Exception:
pass