2020-02-17 19:16:24 +00:00
|
|
|
""" Freqtrade bot """
|
2023-02-25 15:10:24 +00:00
|
|
|
__version__ = '2023.3.dev'
|
2019-08-28 05:05:48 +00:00
|
|
|
|
2022-03-11 16:53:29 +00:00
|
|
|
if 'dev' in __version__:
|
2023-01-12 18:27:41 +00:00
|
|
|
from pathlib import Path
|
2019-08-28 05:05:48 +00:00
|
|
|
try:
|
|
|
|
import subprocess
|
2023-01-12 18:27:41 +00:00
|
|
|
freqtrade_basedir = Path(__file__).parent
|
2020-02-17 19:17:08 +00:00
|
|
|
|
2022-03-11 16:53:29 +00:00
|
|
|
__version__ = __version__ + '-' + subprocess.check_output(
|
2020-02-17 19:17:36 +00:00
|
|
|
['git', 'log', '--format="%h"', '-n 1'],
|
2023-01-11 20:07:03 +00:00
|
|
|
stderr=subprocess.DEVNULL, cwd=freqtrade_basedir).decode("utf-8").rstrip().strip('"')
|
2020-02-17 19:17:08 +00:00
|
|
|
|
2021-09-05 07:14:44 +00:00
|
|
|
except Exception: # pragma: no cover
|
2019-08-28 05:05:48 +00:00
|
|
|
# git not available, ignore
|
2020-04-12 07:55:21 +00:00
|
|
|
try:
|
2020-04-14 06:05:46 +00:00
|
|
|
# Try Fallback to freqtrade_commit file (created by CI while building docker image)
|
2020-04-12 07:55:21 +00:00
|
|
|
versionfile = Path('./freqtrade_commit')
|
|
|
|
if versionfile.is_file():
|
2022-10-20 17:55:42 +00:00
|
|
|
__version__ = f"docker-{__version__}-{versionfile.read_text()[:8]}"
|
2020-04-12 07:55:21 +00:00
|
|
|
except Exception:
|
|
|
|
pass
|