Commit 64573f67 authored by dmMaze's avatar dmMaze
Browse files

fix #497

parent a7e2575d
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -8,9 +8,9 @@ import re
import subprocess
import importlib.util
import pkg_resources
import time

TIME_LAUNCH = time.time()
BRANCH = 'dev'
VERSION = '1.4.0'

python = sys.executable
git = os.environ.get('GIT', "git")
@@ -138,14 +138,12 @@ def main():
    else:
        os.environ['QT_API'] = args.qt_api

    from utils import appinfo

    commit = commit_hash()

    print('py version: ', sys.version)
    print('py executable: ', sys.executable)
    print(f'version: {appinfo.version}')
    print(f'branch: {appinfo.branch}')
    print(f'version: {VERSION}')
    print(f'branch: {BRANCH}')
    print(f"Commit hash: {commit}")

    APP_DIR = os.path.dirname(os.path.abspath(__file__))

utils/appinfo.py

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
branch = 'dev'
version = '1.4.0'
 No newline at end of file