-
Notifications
You must be signed in to change notification settings - Fork 54
/
installhelper.py
75 lines (57 loc) · 1.99 KB
/
installhelper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# Install helper code to manage inserting the correct version for the GUI
# Gets the version from the result of "flax version"
# Converts to proper symver format so NPM doesn't complain
# Adds the version info to the package.json file
#
from __future__ import annotations
import json
import os
import subprocess
from os.path import exists
from pkg_resources import parse_version
#
# The following function is borrowed from
# https://github.com/inveniosoftware/invenio-assets/blob/maint-1.0/invenio_assets/npm.py
# Copyright (C) 2015-2018 CERN.
#
def make_semver(version_str: str) -> str:
v = parse_version(version_str)
major = v._version.release[0]
try:
minor = v._version.release[1]
except IndexError:
minor = 0
try:
patch = v._version.release[2]
except IndexError:
patch = 0
prerelease = []
if v._version.pre:
prerelease.append("".join(str(x) for x in v._version.pre))
if v._version.dev:
prerelease.append("".join(str(x) for x in v._version.dev))
local = v.local
version = "{0}.{1}.{2}".format(major, minor, patch)
if prerelease:
version += "-{0}".format(".".join(prerelease))
if local:
version += "+{0}".format(local)
return version
def get_flax_version() -> str:
version: str = "0.0"
output = subprocess.run(["flax", "version"], capture_output=True)
if output.returncode == 0:
version = str(output.stdout.strip(), "utf-8").splitlines()[-1]
return make_semver(version)
def update_version(package_json_path: str):
if not exists(package_json_path):
return
with open(package_json_path) as f:
data = json.load(f)
data["version"] = get_flax_version()
with open(package_json_path, "w") as w:
json.dump(data, indent=4, fp=w)
if __name__ == "__main__":
update_version(f"{os.path.dirname(__file__)}/flax-blockchain-gui/package.json")
update_version(f"{os.path.dirname(__file__)}/flax-blockchain-gui/packages/gui/package.json")