You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
829 B
22 lines
829 B
#!/usr/bin/python3 |
|
# For usage in shell, to get the version of electrum, without needing electrum installed. |
|
# For example: |
|
# $ VERSION=$("$CONTRIB"/print_electrum_version.py) |
|
# instead of |
|
# $ VERSION=$(python3 -c "import electrum; print(electrum.version.ELECTRUM_VERSION)") |
|
|
|
import importlib.util |
|
import os |
|
|
|
|
|
if __name__ == '__main__': |
|
project_root = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) |
|
version_file_path = os.path.join(project_root, "electrum", "version.py") |
|
|
|
# load version.py; needlessly complicated alternative to "imp.load_source": |
|
version_spec = importlib.util.spec_from_file_location('version', version_file_path) |
|
version_module = version = importlib.util.module_from_spec(version_spec) |
|
version_spec.loader.exec_module(version_module) |
|
|
|
print(version.ELECTRUM_VERSION) |
|
|
|
|