freqtrade_origin/freqtrade/__init__.py

35 lines
954 B
Python
Raw Normal View History

2024-05-12 14:18:15 +00:00
"""Freqtrade bot"""
2019-08-28 05:05:48 +00:00
2024-06-30 09:42:08 +00:00
__version__ = "2024.7-dev"
2024-05-12 14:18:15 +00:00
if "dev" in __version__:
from pathlib import Path
2024-05-12 14:18:15 +00:00
2019-08-28 05:05:48 +00:00
try:
import subprocess
2024-05-12 14:18:15 +00:00
freqtrade_basedir = Path(__file__).parent
2020-02-17 19:17:08 +00:00
2024-05-12 14:18:15 +00:00
__version__ = (
__version__
+ "-"
+ subprocess.check_output(
["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)
2024-05-12 14:18:15 +00:00
versionfile = Path("./freqtrade_commit")
if versionfile.is_file():
__version__ = f"docker-{__version__}-{versionfile.read_text()[:8]}"
2024-06-08 07:23:02 +00:00
except Exception: # noqa: S110
pass