Skip to content
This repository was archived by the owner on Sep 8, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mycroft/util/setup_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def place_manifest(manifest_file):
def get_version():
version = None
try:
import mycroft.__version__
version = mycroft.__version__.version
from mycroft.version import CORE_VERSION_STR
version = CORE_VERSION_STR
except Exception as e:
try:
version = "dev-" + subprocess.check_output(
Expand Down